[matroska] r982 - trunk/libmatroska/matroska
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: robux4
Date: 2004-12-18 11:49:52 +0300 (Sat, 18 Dec 2004)
New Revision: 982
Modified:
trunk/libmatroska/matroska/KaxBlock.h
Log:
BlockAdditions is in Matroska 1 now
Modified: trunk/libmatroska/matroska/KaxBlock.h
===================================================================
--- trunk/libmatroska/matroska/KaxBlock.h 2004-12-16 22:55:58 UTC (rev 981)
+++ trunk/libmatroska/matroska/KaxBlock.h 2004-12-18 08:49:52 UTC (rev 982)
@@ -302,6 +302,7 @@
const KaxCluster * ParentCluster;
};
+#endif // MATROSKA_VERSION
class MATROSKA_DLL_API KaxBlockAdditional : public EbmlBinary {
public:
@@ -340,7 +341,7 @@
class MATROSKA_DLL_API KaxBlockAddID : public EbmlUInteger {
public:
- KaxBlockAddID() {}
+ KaxBlockAddID() :EbmlUInteger(0) {}
KaxBlockAddID(const KaxBlockAddID & ElementToClone) :EbmlUInteger(ElementToClone) {}
static EbmlElement & Create() {return *(new KaxBlockAddID);}
const EbmlCallbacks & Generic() const {return ClassInfos;}
@@ -348,7 +349,6 @@
operator const EbmlId &() const {return ClassInfos.GlobalId;}
EbmlElement * Clone() const {return new KaxBlockAddID(*this);}
};
-#endif // MATROSKA_VERSION
END_LIBMATROSKA_NAMESPACE