summaryrefslogtreecommitdiffstats
path: root/dom/media/platforms
diff options
context:
space:
mode:
authortrav90 <travawine@palemoon.org>2018-11-21 08:44:16 -0600
committertrav90 <travawine@palemoon.org>2018-11-21 08:44:16 -0600
commit513bf1b6832ed056241bbc376537c55c2d3a987e (patch)
treec81e117b4b60b72b8ad1580ba92d49a0e5c843aa /dom/media/platforms
parent6a9c2be4eac174c1b44ffb0ff16fd32fca92aa18 (diff)
downloadUXP-513bf1b6832ed056241bbc376537c55c2d3a987e.tar
UXP-513bf1b6832ed056241bbc376537c55c2d3a987e.tar.gz
UXP-513bf1b6832ed056241bbc376537c55c2d3a987e.tar.lz
UXP-513bf1b6832ed056241bbc376537c55c2d3a987e.tar.xz
UXP-513bf1b6832ed056241bbc376537c55c2d3a987e.zip
Remove remaining MOZ_GONK_MEDIACODEC code
Diffstat (limited to 'dom/media/platforms')
-rw-r--r--dom/media/platforms/PDMFactory.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/dom/media/platforms/PDMFactory.cpp b/dom/media/platforms/PDMFactory.cpp
index c1e58fdc2..5bfdcffb7 100644
--- a/dom/media/platforms/PDMFactory.cpp
+++ b/dom/media/platforms/PDMFactory.cpp
@@ -19,9 +19,6 @@
#ifdef MOZ_APPLEMEDIA
#include "AppleDecoderModule.h"
#endif
-#ifdef MOZ_GONK_MEDIACODEC
-#include "GonkDecoderModule.h"
-#endif
#ifdef MOZ_WIDGET_ANDROID
#include "AndroidDecoderModule.h"
#endif
@@ -390,12 +387,6 @@ PDMFactory::CreatePDMs()
m = new AppleDecoderModule();
StartupPDM(m);
#endif
-#ifdef MOZ_GONK_MEDIACODEC
- if (MediaPrefs::PDMGonkDecoderEnabled()) {
- m = new GonkDecoderModule();
- StartupPDM(m);
- }
-#endif
#ifdef MOZ_WIDGET_ANDROID
if(MediaPrefs::PDMAndroidMediaCodecEnabled()){
m = new AndroidDecoderModule();