diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-04-18 01:54:43 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-04-18 01:54:43 -0400 |
commit | f3206baa807da484fd3365ea0c7a8bdeae9f5e5e (patch) | |
tree | f508f98596ac4b481ab188171f2c45ff4ab15e16 /dom/media/ogg | |
parent | 24607dc828af83a5111308847b2e825f61dd7fa4 (diff) | |
download | uxp-f3206baa807da484fd3365ea0c7a8bdeae9f5e5e.tar.gz |
Issue #80 - De-unify dom/media/ogg
Diffstat (limited to 'dom/media/ogg')
-rw-r--r-- | dom/media/ogg/OggDemuxer.cpp | 1 | ||||
-rw-r--r-- | dom/media/ogg/moz.build | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/dom/media/ogg/OggDemuxer.cpp b/dom/media/ogg/OggDemuxer.cpp index 0cc4846878..f9475700a2 100644 --- a/dom/media/ogg/OggDemuxer.cpp +++ b/dom/media/ogg/OggDemuxer.cpp @@ -21,6 +21,7 @@ #include <algorithm> extern mozilla::LazyLogModule gMediaDemuxerLog; +#define LOG(type, msg) MOZ_LOG(gMediaDecoderLog, type, msg) #define OGG_DEBUG(arg, ...) MOZ_LOG(gMediaDemuxerLog, mozilla::LogLevel::Debug, ("OggDemuxer(%p)::%s: " arg, this, __func__, ##__VA_ARGS__)) // Un-comment to enable logging of seek bisections. diff --git a/dom/media/ogg/moz.build b/dom/media/ogg/moz.build index 07e195b6f7..c47abf690d 100644 --- a/dom/media/ogg/moz.build +++ b/dom/media/ogg/moz.build @@ -13,7 +13,7 @@ EXPORTS += [ 'OpusParser.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'OggCodecState.cpp', 'OggCodecStore.cpp', 'OggDecoder.cpp', |