media-video/ffmpeg: bp us patch to fix mpv crash regression
authorAlexis Ballier <aballier@gentoo.org>
Tue, 17 Jul 2018 07:31:16 +0000 (09:31 +0200)
committerAlexis Ballier <aballier@gentoo.org>
Tue, 17 Jul 2018 07:33:25 +0000 (09:33 +0200)
Closes: https://bugs.gentoo.org/661220
Package-Manager: Portage-2.3.43, Repoman-2.3.10

media-video/ffmpeg/ffmpeg-3.4.3-r1.ebuild [moved from media-video/ffmpeg/ffmpeg-3.4.3.ebuild with 99% similarity]
media-video/ffmpeg/files/imgc.patch [new file with mode: 0644]

similarity index 99%
rename from media-video/ffmpeg/ffmpeg-3.4.3.ebuild
rename to media-video/ffmpeg/ffmpeg-3.4.3-r1.ebuild
index aa8b226963bb7e88dc2102573148f26b85e13514..cfc053565cd7ede366fa2a4084c9b5f4f843723a 100644 (file)
@@ -290,6 +290,7 @@ S=${WORKDIR}/${P/_/-}
 
 PATCHES=(
        "${FILESDIR}"/chromium.patch
+       "${FILESDIR}"/imgc.patch
 )
 
 MULTILIB_WRAPPED_HEADERS=(
diff --git a/media-video/ffmpeg/files/imgc.patch b/media-video/ffmpeg/files/imgc.patch
new file mode 100644 (file)
index 0000000..793299a
--- /dev/null
@@ -0,0 +1,29 @@
+commit c1e172c2e14ef059dac632f7c67f081dfecd30dc
+Author: Simon Thelen <ffmpeg-dev@c-14.de>
+Date:   Tue Apr 3 14:41:33 2018 +0200
+
+    avcodec/imgconvert: fix possible null pointer dereference
+    
+    regression since 354b26a3945eadd4ed8fcd801dfefad2566241de
+    
+    (cherry picked from commit 8c2c97403baf95d0facb53f03e468f023eb943e1)
+
+diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
+index 7b0005b308..1fd636c83d 100644
+--- a/libavcodec/imgconvert.c
++++ b/libavcodec/imgconvert.c
+@@ -72,11 +72,12 @@ enum AVPixelFormat avcodec_find_best_pix_fmt_of_list(const enum AVPixelFormat *p
+     int loss;
+     for (i=0; pix_fmt_list[i] != AV_PIX_FMT_NONE; i++) {
+-        loss = *loss_ptr;
++        loss = loss_ptr ? *loss_ptr : 0;
+         best = avcodec_find_best_pix_fmt_of_2(best, pix_fmt_list[i], src_pix_fmt, has_alpha, &loss);
+     }
+-    *loss_ptr = loss;
++    if (loss_ptr)
++        *loss_ptr = loss;
+     return best;
+ }