summaryrefslogtreecommitdiff
path: root/mozilla-1625431.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-06-01 19:33:10 +0200
committerMartin Stransky <stransky@redhat.com>2020-06-01 19:33:10 +0200
commitb44a1c898347650b59dc53585fcf7b95d553b1c6 (patch)
tree61e6c34deac00a4f746b6d5626d2826818ab7426 /mozilla-1625431.patch
parentnss build fix (diff)
downloadlibrewolf-fedora-ff-b44a1c898347650b59dc53585fcf7b95d553b1c6.tar.gz
librewolf-fedora-ff-b44a1c898347650b59dc53585fcf7b95d553b1c6.tar.bz2
librewolf-fedora-ff-b44a1c898347650b59dc53585fcf7b95d553b1c6.zip
removed unused patch
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