summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-10-15 11:07:22 +0200
committerMartin Stransky <stransky@redhat.com>2020-10-15 11:07:22 +0200
commit39ad1ccbc1ed329f09449d0824476266c5420a5e (patch)
tree67c4874ff95c3ff3cc09e8c7dac3e083a0a10e64
parentAdded a partial fox for rhbz#1886722 (diff)
downloadlibrewolf-fedora-ff-39ad1ccbc1ed329f09449d0824476266c5420a5e.tar.gz
librewolf-fedora-ff-39ad1ccbc1ed329f09449d0824476266c5420a5e.tar.bz2
librewolf-fedora-ff-39ad1ccbc1ed329f09449d0824476266c5420a5e.zip
Added experimental openh264 seek patch (mzbz#1670333)
-rw-r--r--firefox.spec7
-rw-r--r--mozilla-1670333.patch12
2 files changed, 18 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index e1a7750..2621dcd 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -107,7 +107,7 @@ ExcludeArch: s390x
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 81.0.2
-Release: 2%{?dist}
+Release: 3%{?dist}
URL: https://www.mozilla.org/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
@@ -176,6 +176,7 @@ Patch411: mozilla-1668771.patch
Patch412: mozilla-1634404.patch
Patch413: mozilla-1669495.patch
Patch414: mozilla-1656727.patch
+Patch415: mozilla-1670333.patch
# Wayland specific upstream patches
Patch574: firefox-pipewire-0-2.patch
@@ -387,6 +388,7 @@ This package contains results of tests executed during build.
%patch412 -p1 -b .1634404
%patch413 -p1 -b .1669495
%patch414 -p1 -b .1656727
+%patch415 -p1 -b .1670333
# Wayland specific upstream patches
%if 0%{?fedora} < 32
@@ -981,6 +983,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Thu Oct 15 2020 Martin Stransky <stransky@redhat.com> - 81.0.2-3
+- Added experimental openh264 seek patch (mzbz#1670333)
+
* Mon Oct 12 2020 Martin Stransky <stransky@redhat.com> - 81.0.2-2
- Added a partial fox for rhbz#1886722
diff --git a/mozilla-1670333.patch b/mozilla-1670333.patch
new file mode 100644
index 0000000..42d42ba
--- /dev/null
+++ b/mozilla-1670333.patch
@@ -0,0 +1,12 @@
+diff -up firefox-81.0.2/dom/media/mp4/MP4Demuxer.cpp.old firefox-81.0.2/dom/media/mp4/MP4Demuxer.cpp
+--- firefox-81.0.2/dom/media/mp4/MP4Demuxer.cpp.old 2020-10-14 17:06:31.424309071 +0200
++++ firefox-81.0.2/dom/media/mp4/MP4Demuxer.cpp 2020-10-14 17:07:31.029533759 +0200
+@@ -394,7 +394,7 @@ already_AddRefed<MediaRawData> MP4TrackD
+ [[fallthrough]];
+ case H264::FrameType::OTHER: {
+ bool keyframe = type == H264::FrameType::I_FRAME;
+- if (sample->mKeyframe != keyframe) {
++ if (sample->mKeyframe && sample->mKeyframe != keyframe) {
+ NS_WARNING(nsPrintfCString("Frame incorrectly marked as %skeyframe "
+ "@ pts:%" PRId64 " dur:%" PRId64
+ " dts:%" PRId64,
bgstack15