summaryrefslogtreecommitdiff
path: root/mozilla-1656436.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-09-15 14:55:10 +0200
committerMartin Stransky <stransky@redhat.com>2020-09-15 14:55:10 +0200
commit74f97a94b1c0fd6e5946e67915aaa32261abf3c8 (patch)
treec121bc2481eb727ae029778bf5e89751ca7a6792 /mozilla-1656436.patch
parentAdded fix for gcc build crash (diff)
downloadlibrewolf-fedora-ff-74f97a94b1c0fd6e5946e67915aaa32261abf3c8.tar.gz
librewolf-fedora-ff-74f97a94b1c0fd6e5946e67915aaa32261abf3c8.tar.bz2
librewolf-fedora-ff-74f97a94b1c0fd6e5946e67915aaa32261abf3c8.zip
Update to 81.0
Diffstat (limited to 'mozilla-1656436.patch')
-rw-r--r--mozilla-1656436.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/mozilla-1656436.patch b/mozilla-1656436.patch
deleted file mode 100644
index 6350a43..0000000
--- a/mozilla-1656436.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff -up firefox-79.0/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp.mozilla-1656436 firefox-79.0/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp
---- firefox-79.0/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp.mozilla-1656436 2020-08-04 13:31:49.476663242 +0200
-+++ firefox-79.0/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp 2020-08-04 13:32:28.201448682 +0200
-@@ -766,6 +766,11 @@ MediaResult FFmpegVideoDecoder<LIBAV_VER
- mDMABufSurfaces.EmplaceBack(surface, mLib);
- surfaceWrapper = &(mDMABufSurfaces[mDMABufSurfaces.Length() - 1]);
- } else {
-+ // Release VAAPI surface data before we reuse it.
-+ if (mVAAPIDeviceContext) {
-+ surfaceWrapper->ReleaseVAAPIData();
-+ }
-+
- surface = surfaceWrapper->GetDMABufSurface();
- bool ret;
-
-diff -up firefox-79.0/widget/gtk/DMABufSurface.cpp.mozilla-1656436 firefox-79.0/widget/gtk/DMABufSurface.cpp
---- firefox-79.0/widget/gtk/DMABufSurface.cpp.mozilla-1656436 2020-08-04 13:31:49.477663237 +0200
-+++ firefox-79.0/widget/gtk/DMABufSurface.cpp 2020-08-04 13:33:07.666230023 +0200
-@@ -744,7 +744,8 @@ bool DMABufSurfaceYUV::UpdateYUVData(con
- return false;
- }
- if (mDmabufFds[0] >= 0) {
-- ReleaseSurface();
-+ NS_WARNING("DMABufSurfaceYUV is already created!");
-+ return false;
- }
-
- mSurfaceFormat = gfx::SurfaceFormat::NV12;
bgstack15