KaxSemantic.h | KaxSemantic.h | |||
---|---|---|---|---|
skipping to change at line 584 | skipping to change at line 584 | |||
}; | }; | |||
DECLARE_MKX_UINTEGER(KaxChapterFlagEnabled) | DECLARE_MKX_UINTEGER(KaxChapterFlagEnabled) | |||
}; | }; | |||
DECLARE_MKX_BINARY (KaxChapterSegmentUID) | DECLARE_MKX_BINARY (KaxChapterSegmentUID) | |||
public: | public: | |||
virtual bool ValidateSize() const {return IsFiniteSize() && GetSize( ) == 16;} | virtual bool ValidateSize() const {return IsFiniteSize() && GetSize( ) == 16;} | |||
}; | }; | |||
DECLARE_MKX_BINARY (KaxChapterSegmentEditionUID) | DECLARE_MKX_UINTEGER(KaxChapterSegmentEditionUID) | |||
public: | ||||
virtual bool ValidateSize() const {return IsFiniteSize() && GetSize( | ||||
) == 16;} | ||||
}; | }; | |||
DECLARE_MKX_UINTEGER(KaxChapterPhysicalEquiv) | DECLARE_MKX_UINTEGER(KaxChapterPhysicalEquiv) | |||
}; | }; | |||
DECLARE_MKX_MASTER(KaxChapterTrack) | DECLARE_MKX_MASTER(KaxChapterTrack) | |||
}; | }; | |||
DECLARE_MKX_UINTEGER(KaxChapterTrackNumber) | DECLARE_MKX_UINTEGER(KaxChapterTrackNumber) | |||
}; | }; | |||
End of changes. 1 change blocks. | ||||
4 lines changed or deleted | 1 lines changed or added | |||
KaxVersion.h | KaxVersion.h | |||
---|---|---|---|---|
skipping to change at line 43 | skipping to change at line 43 | |||
#ifndef LIBMATROSKA_VERSION_H | #ifndef LIBMATROSKA_VERSION_H | |||
#define LIBMATROSKA_VERSION_H | #define LIBMATROSKA_VERSION_H | |||
#include <string> | #include <string> | |||
#include "ebml/EbmlConfig.h" | #include "ebml/EbmlConfig.h" | |||
#include "matroska/KaxConfig.h" | #include "matroska/KaxConfig.h" | |||
START_LIBMATROSKA_NAMESPACE | START_LIBMATROSKA_NAMESPACE | |||
#define LIBMATROSKA_VERSION 0x010200 | #define LIBMATROSKA_VERSION 0x010300 | |||
static const std::string KaxCodeVersion = "1.2.0"; | extern const std::string KaxCodeVersion; | |||
static const std::string KaxCodeDate = __TIMESTAMP__; | extern const std::string KaxCodeDate; | |||
/*! | /*! | |||
\todo Improve the CRC/ECC system (backward and forward possible ?) t o fit streaming/live writing/simple reading | \todo Improve the CRC/ECC system (backward and forward possible ?) t o fit streaming/live writing/simple reading | |||
*/ | */ | |||
END_LIBMATROSKA_NAMESPACE | END_LIBMATROSKA_NAMESPACE | |||
#endif // LIBMATROSKA_VERSION_H | #endif // LIBMATROSKA_VERSION_H | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||