diff options
author | Moonchild <moonchild@palemoon.org> | 2020-04-22 02:32:20 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-06-03 11:49:58 +0000 |
commit | 5a64ee34a9e5242bbe5fe4e509ef38ef42f360fa (patch) | |
tree | 648f0ce4febbee2f901ef6af74385df8ce452eee /dom/media/platforms/omx | |
parent | da8fbfb4d56a4800b3e4c134ea387c2d9fcd9df7 (diff) | |
download | UXP-5a64ee34a9e5242bbe5fe4e509ef38ef42f360fa.tar UXP-5a64ee34a9e5242bbe5fe4e509ef38ef42f360fa.tar.gz UXP-5a64ee34a9e5242bbe5fe4e509ef38ef42f360fa.tar.lz UXP-5a64ee34a9e5242bbe5fe4e509ef38ef42f360fa.tar.xz UXP-5a64ee34a9e5242bbe5fe4e509ef38ef42f360fa.zip |
Issue #80 - Re-land early dom/media de-unification with fixups.
For some reason these changes never got merged back to master
after reverting to work on a branch...
Diffstat (limited to 'dom/media/platforms/omx')
-rw-r--r-- | dom/media/platforms/omx/OmxPlatformLayer.cpp | 2 | ||||
-rw-r--r-- | dom/media/platforms/omx/OmxPlatformLayer.h | 1 | ||||
-rw-r--r-- | dom/media/platforms/omx/moz.build | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/dom/media/platforms/omx/OmxPlatformLayer.cpp b/dom/media/platforms/omx/OmxPlatformLayer.cpp index 15b3062a4..12a7d0595 100644 --- a/dom/media/platforms/omx/OmxPlatformLayer.cpp +++ b/dom/media/platforms/omx/OmxPlatformLayer.cpp @@ -6,6 +6,8 @@ #include "OmxPlatformLayer.h" +#include "OmxDataDecoder.h" + #include "OMX_VideoExt.h" // For VP8. #include "VPXDecoder.h" diff --git a/dom/media/platforms/omx/OmxPlatformLayer.h b/dom/media/platforms/omx/OmxPlatformLayer.h index 67d9e448f..8e751e1a7 100644 --- a/dom/media/platforms/omx/OmxPlatformLayer.h +++ b/dom/media/platforms/omx/OmxPlatformLayer.h @@ -7,6 +7,7 @@ #if !defined(OmxPlatformLayer_h_) #define OmxPlatformLayer_h_ +#include "OMX_Component.h" #include "OMX_Core.h" #include "OMX_Types.h" diff --git a/dom/media/platforms/omx/moz.build b/dom/media/platforms/omx/moz.build index 661e280e0..ee7202bd3 100644 --- a/dom/media/platforms/omx/moz.build +++ b/dom/media/platforms/omx/moz.build @@ -8,7 +8,7 @@ EXPORTS += [ 'OmxDecoderModule.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'OmxDataDecoder.cpp', 'OmxDecoderModule.cpp', 'OmxPlatformLayer.cpp', |