summaryrefslogtreecommitdiffstats
path: root/dom/media/platforms/PEMFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/platforms/PEMFactory.cpp')
-rw-r--r--dom/media/platforms/PEMFactory.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/dom/media/platforms/PEMFactory.cpp b/dom/media/platforms/PEMFactory.cpp
index 9647c5b079..a5b42914eb 100644
--- a/dom/media/platforms/PEMFactory.cpp
+++ b/dom/media/platforms/PEMFactory.cpp
@@ -20,13 +20,12 @@
# include "WMFEncoderModule.h"
#endif
-#ifdef MOZ_FFVPX
-# include "FFVPXRuntimeLinker.h"
-#endif
#ifdef MOZ_FFMPEG
# include "FFmpegRuntimeLinker.h"
#endif
+#include "FFVPXRuntimeLinker.h"
+
#include "mozilla/StaticPrefs_media.h"
#include "mozilla/gfx/gfxVars.h"
@@ -56,15 +55,12 @@ PEMFactory::PEMFactory() {
mCurrentPEMs.AppendElement(new WMFEncoderModule());
#endif
-#ifdef MOZ_FFVPX
- if (StaticPrefs::media_ffvpx_enabled() &&
- StaticPrefs::media_ffmpeg_encoder_enabled()) {
+ if (StaticPrefs::media_ffmpeg_encoder_enabled()) {
if (RefPtr<PlatformEncoderModule> pem =
FFVPXRuntimeLinker::CreateEncoder()) {
mCurrentPEMs.AppendElement(pem);
}
}
-#endif
#ifdef MOZ_FFMPEG
if (StaticPrefs::media_ffmpeg_enabled() &&