summaryrefslogtreecommitdiff
path: root/mozilla-1625431.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mozilla-1625431.patch')
-rw-r--r--mozilla-1625431.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/mozilla-1625431.patch b/mozilla-1625431.patch
deleted file mode 100644
index c0e6d3a..0000000
--- a/mozilla-1625431.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp b/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp
---- a/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp
-+++ b/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp
-@@ -172,6 +172,15 @@
- MediaResult FFmpegVideoDecoder<LIBAV_VER>::InitVAAPIDecoder() {
- FFMPEG_LOG("Initialising VA-API FFmpeg decoder");
-
-+ auto layersBackend = mImageAllocator
-+ ? mImageAllocator->GetCompositorBackendType()
-+ : layers::LayersBackend::LAYERS_BASIC;
-+ if (layersBackend != layers::LayersBackend::LAYERS_OPENGL &&
-+ layersBackend != layers::LayersBackend::LAYERS_WR) {
-+ FFMPEG_LOG("VA-API works with HW accelerated backend only!");
-+ return NS_ERROR_NOT_AVAILABLE;
-+ }
-+
- if (!mLib->IsVAAPIAvailable()) {
- FFMPEG_LOG("libva library or symbols are missing.");
- return NS_ERROR_NOT_AVAILABLE;
-
bgstack15