diff options
author | Moonchild <moonchild@palemoon.org> | 2020-04-22 02:32:20 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-04-22 02:32:20 +0000 |
commit | b5b62d841c733dcb62112f3158f1488e670671d6 (patch) | |
tree | 6a83353eed59e416073ead6cbd8661d389d7f9a6 /dom/media/platforms/omx | |
parent | c9bde0ff25540e6e3a41638c982cc7a575659487 (diff) | |
download | UXP-b5b62d841c733dcb62112f3158f1488e670671d6.tar UXP-b5b62d841c733dcb62112f3158f1488e670671d6.tar.gz UXP-b5b62d841c733dcb62112f3158f1488e670671d6.tar.lz UXP-b5b62d841c733dcb62112f3158f1488e670671d6.tar.xz UXP-b5b62d841c733dcb62112f3158f1488e670671d6.zip |
Issue #80 - De-unify dom/media part 1
This de-unifies up to and including dom/media/platforms with the exception of
dom/media/platforms/wmf, because that one throws weird errors in the Win
SDK which don't have a clear cause (yet)
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', |