[matroska] r729 - in trunk/libmatroska: matroska src
[email protected] Wed, 25 Aug 2004 18:56:32 +0400 (MSD)
Newsgroups
gmane.comp.multimedia.matroska.cvs
Message-ID
<[email protected] >
Author: mosu
Date: 2004-08-25 18:56:31 +0400 (Wed, 25 Aug 2004)
New Revision: 729
Modified:
trunk/libmatroska/matroska/KaxTrackVideo.h
trunk/libmatroska/src/KaxChapters.cpp
Log:
Fixed the compilation.
Modified: trunk/libmatroska/matroska/KaxTrackVideo.h
===================================================================
--- trunk/libmatroska/matroska/KaxTrackVideo.h 2004-08-25 14:48:19 UTC (rev 728)
+++ trunk/libmatroska/matroska/KaxTrackVideo.h 2004-08-25 14:56:31 UTC (rev 729)
@@ -104,7 +104,7 @@
class MATROSKA_DLL_API KaxVideoPixelCropBottom : public EbmlUInteger {
public:
- KaxVideoPixelCropBottom(0) {}
+ KaxVideoPixelCropBottom(): EbmlUInteger(0) {}
KaxVideoPixelCropBottom(const KaxVideoPixelCropBottom & ElementToClone) :EbmlUInteger(ElementToClone) {}
static EbmlElement & Create() {return *(new KaxVideoPixelCropBottom);}
const EbmlCallbacks & Generic() const {return ClassInfos;}
@@ -115,7 +115,7 @@
class MATROSKA_DLL_API KaxVideoPixelCropTop : public EbmlUInteger {
public:
- KaxVideoPixelCropTop(0) {}
+ KaxVideoPixelCropTop(): EbmlUInteger(0) {}
KaxVideoPixelCropTop(const KaxVideoPixelCropTop & ElementToClone) :EbmlUInteger(ElementToClone) {}
static EbmlElement & Create() {return *(new KaxVideoPixelCropTop);}
const EbmlCallbacks & Generic() const {return ClassInfos;}
@@ -126,7 +126,7 @@
class MATROSKA_DLL_API KaxVideoPixelCropLeft : public EbmlUInteger {
public:
- KaxVideoPixelCropLeft(0) {}
+ KaxVideoPixelCropLeft(): EbmlUInteger(0) {}
KaxVideoPixelCropLeft(const KaxVideoPixelCropLeft & ElementToClone) :EbmlUInteger(ElementToClone) {}
static EbmlElement & Create() {return *(new KaxVideoPixelCropLeft);}
const EbmlCallbacks & Generic() const {return ClassInfos;}
@@ -137,7 +137,7 @@
class MATROSKA_DLL_API KaxVideoPixelCropRight : public EbmlUInteger {
public:
- KaxVideoPixelCropRight(0) {}
+ KaxVideoPixelCropRight(): EbmlUInteger(0) {}
KaxVideoPixelCropRight(const KaxVideoPixelCropRight & ElementToClone) :EbmlUInteger(ElementToClone) {}
static EbmlElement & Create() {return *(new KaxVideoPixelCropRight);}
const EbmlCallbacks & Generic() const {return ClassInfos;}
Modified: trunk/libmatroska/src/KaxChapters.cpp
===================================================================
--- trunk/libmatroska/src/KaxChapters.cpp 2004-08-25 14:48:19 UTC (rev 728)
+++ trunk/libmatroska/src/KaxChapters.cpp 2004-08-25 14:56:31 UTC (rev 729)
@@ -77,7 +77,7 @@
EbmlSemantic(false, false, KaxChapterCountry::ClassInfos),
};
-EbmlSemantic KaxChapterProcess_ContextList[3] =
+EbmlSemantic KaxChapterProcess_ContextList[1] =
{
EbmlSemantic(true, true, KaxChapterProcessTime::ClassInfos),
};
@@ -101,7 +101,7 @@
const EbmlSemanticContext KaxChapterLanguage_Context = EbmlSemanticContext(0, NULL, &KaxChapterLanguage_Context, *GetKaxGlobal_Context, &KaxChapterLanguage::ClassInfos);
const EbmlSemanticContext KaxChapterCountry_Context = EbmlSemanticContext(0, NULL, &KaxChapterCountry_Context, *GetKaxGlobal_Context, &KaxChapterCountry::ClassInfos);
const EbmlSemanticContext KaxChapterProcess_Context = EbmlSemanticContext(countof(KaxChapterProcess_ContextList), KaxChapterProcess_ContextList, &KaxChapterAtom_Context, *GetKaxGlobal_Context, &KaxChapterProcess::ClassInfos);
-const EbmlSemanticContext KaxChapterProcessTime_Context = EbmlSemanticContext(0, NULL, &KaxChapterProcess_ContextList, *GetKaxGlobal_Context, &KaxChapterProcessTime::ClassInfos);
+const EbmlSemanticContext KaxChapterProcessTime_Context = EbmlSemanticContext(0, NULL, &KaxChapterProcess_Context, *GetKaxGlobal_Context, &KaxChapterProcessTime::ClassInfos);
EbmlId KaxChapters_TheId (0x1043A770, 4);
EbmlId KaxEditionEntry_TheId (0x45B9, 2);