Skip to content

Commit

Permalink
fix libebml namespaces usage in some macros
Browse files Browse the repository at this point in the history
  • Loading branch information
robUx4 committed Jan 6, 2024
1 parent e4643e1 commit 30a0905
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions matroska/KaxDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
#define DEFINE_MKX_FLOAT(a,b,c,d,e) DEFINE_xxx_FLOAT(a,b,c,d,e,GetKaxGlobal_Context)
#define DEFINE_MKX_DATE(a,b,c,d,e) DEFINE_xxx_DATE(a,b,c,d,e,GetKaxGlobal_Context)
#define DEFINE_MKX_BINARY_CONS(a,b,c,d,e) DEFINE_xxx_CLASS_CONS(a,b,c,d,e,GetKaxGlobal_Context) \
const EbmlCallbacks a::ClassInfos(a::Create, Id_##a, false, e, Context_##a);
const libebml::EbmlCallbacks a::ClassInfos(a::Create, Id_##a, false, e, Context_##a);
#define DEFINE_MKX_SINTEGER_CONS(a,b,c,d,e) DEFINE_xxx_CLASS_CONS(a,b,c,d,e,GetKaxGlobal_Context) \
const EbmlCallbacksDefault<std::int64_t> a::ClassInfos(a::Create, Id_##a, e, Context_##a);
const libebml::EbmlCallbacksDefault<std::int64_t> a::ClassInfos(a::Create, Id_##a, e, Context_##a);

#define DECLARE_MKX_MASTER(x) \
DECLARE_xxx_MASTER(x, MATROSKA_DLL_API) \
Expand Down

0 comments on commit 30a0905

Please sign in to comment.