[matroska] r999 - in trunk/libmatroska: matroska src
[email protected] Mon, 3 Jan 2005 18:47:26 +0300 (MSK)
Newsgroups
gmane.comp.multimedia.matroska.cvs
Message-ID
<[email protected] >
Author: mosu
Date: 2005-01-03 18:47:24 +0300 (Mon, 03 Jan 2005)
New Revision: 999
Modified:
trunk/libmatroska/matroska/KaxChapters.h
trunk/libmatroska/src/KaxChapters.cpp
Log:
Look! Squirrels! (The usual compilation fixes after one of robux' "I commit from work without having compiled it first" commits :-) )
Modified: trunk/libmatroska/matroska/KaxChapters.h
===================================================================
--- trunk/libmatroska/matroska/KaxChapters.h 2005-01-03 15:12:46 UTC (rev 998)
+++ trunk/libmatroska/matroska/KaxChapters.h 2005-01-03 15:47:24 UTC (rev 999)
@@ -277,15 +277,15 @@
EbmlElement * Clone() const {return new KaxChapterProcessCodecID(*this);}
};
-class MATROSKA_DLL_API KaxChapterProcessedPrivate : public EbmlBinary {
+class MATROSKA_DLL_API KaxChapterProcessPrivate : public EbmlBinary {
public:
- KaxChapterProcessedPrivate() {}
- KaxChapterProcessedPrivate(const KaxChapterProcessedPrivate & ElementToClone) :EbmlBinary(ElementToClone) {}
- static EbmlElement & Create() {return *(new KaxChapterProcessedPrivate);}
+ KaxChapterProcessPrivate() {}
+ KaxChapterProcessPrivate(const KaxChapterProcessPrivate & ElementToClone) :EbmlBinary(ElementToClone) {}
+ static EbmlElement & Create() {return *(new KaxChapterProcessPrivate);}
const EbmlCallbacks & Generic() const {return ClassInfos;}
static const EbmlCallbacks ClassInfos;
operator const EbmlId &() const {return ClassInfos.GlobalId;}
- EbmlElement * Clone() const {return new KaxChapterProcessedPrivate(*this);}
+ EbmlElement * Clone() const {return new KaxChapterProcessPrivate(*this);}
bool ValidateSize() const {return true;}
};
Modified: trunk/libmatroska/src/KaxChapters.cpp
===================================================================
--- trunk/libmatroska/src/KaxChapters.cpp 2005-01-03 15:12:46 UTC (rev 998)
+++ trunk/libmatroska/src/KaxChapters.cpp 2005-01-03 15:47:24 UTC (rev 999)
@@ -114,8 +114,8 @@
const EbmlSemanticContext KaxChapterProcessCodecID_Context = EbmlSemanticContext(0, NULL, &KaxChapterProcess_Context, *GetKaxGlobal_Context, &KaxChapterProcessCodecID::ClassInfos);
const EbmlSemanticContext KaxChapterProcessPrivate_Context = EbmlSemanticContext(0, NULL, &KaxChapterProcess_Context, *GetKaxGlobal_Context, &KaxChapterProcessPrivate::ClassInfos);
const EbmlSemanticContext KaxChapterProcessCommand_Context = EbmlSemanticContext(countof(KaxChapterProcessCommand_ContextList), KaxChapterProcessCommand_ContextList, &KaxChapterProcess_Context, *GetKaxGlobal_Context, &KaxChapterProcessCommand::ClassInfos);
-const EbmlSemanticContext KaxChapterProcessTime_Context = EbmlSemanticContext(0, NULL, &KaxChapterProcessCommand_ContextList, *GetKaxGlobal_Context, &KaxChapterProcessTime::ClassInfos);
-const EbmlSemanticContext KaxChapterProcessData_Context = EbmlSemanticContext(0, NULL, &KaxChapterProcessCommand_ContextList, *GetKaxGlobal_Context, &KaxChapterProcessData::ClassInfos);
+const EbmlSemanticContext KaxChapterProcessTime_Context = EbmlSemanticContext(0, NULL, &KaxChapterProcessCommand_Context, *GetKaxGlobal_Context, &KaxChapterProcessTime::ClassInfos);
+const EbmlSemanticContext KaxChapterProcessData_Context = EbmlSemanticContext(0, NULL, &KaxChapterProcessCommand_Context, *GetKaxGlobal_Context, &KaxChapterProcessData::ClassInfos);
EbmlId KaxChapters_TheId (0x1043A770, 4);
EbmlId KaxEditionEntry_TheId (0x45B9, 2);