diff options
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-h264-correct-ref-count-check-and-limit-fix-out-of-ar.patch | 29 | ||||
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb | 1 |
2 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-h264-correct-ref-count-check-and-limit-fix-out-of-ar.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-h264-correct-ref-count-check-and-limit-fix-out-of-ar.patch new file mode 100644 index 0000000000..d4f55b2696 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-h264-correct-ref-count-check-and-limit-fix-out-of-ar.patch | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | From d6c184880ee2e09fd68c0ae217173832cee5afc1 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Michael Niedermayer <michaelni@gmx.at> | ||
| 3 | Date: Sun, 18 Nov 2012 16:29:04 +0100 | ||
| 4 | Subject: [PATCH] h264: correct ref count check and limit, fix out of array | ||
| 5 | accesses. | ||
| 6 | |||
| 7 | Upstream-Status: Backport | ||
| 8 | |||
| 9 | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind | ||
| 10 | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> | ||
| 11 | --- | ||
| 12 | libavcodec/h264.c | 2 +- | ||
| 13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 14 | |||
| 15 | diff --git a/libavcodec/h264.c b/libavcodec/h264.c | ||
| 16 | index da43f1e..32cede5 100644 | ||
| 17 | --- a/gst-libs/ext/libav/libavcodec/h264.c | ||
| 18 | +++ b/gst-libs/ext/libav/libavcodec/h264.c | ||
| 19 | @@ -2870,6 +2870,9 @@ static int decode_slice_header(H264Conte | ||
| 20 | h->ref_count[0]= get_ue_golomb(&s->gb) + 1; | ||
| 21 | if(h->slice_type_nos==AV_PICTURE_TYPE_B) | ||
| 22 | h->ref_count[1]= get_ue_golomb(&s->gb) + 1; | ||
| 23 | + else | ||
| 24 | + // full range is spec-ok in this case, even for frames | ||
| 25 | + h->ref_count[1] = 1; | ||
| 26 | |||
| 27 | if(h->ref_count[0]-1 > 32-1 || h->ref_count[1]-1 > 32-1){ | ||
| 28 | av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow\n"); | ||
| 29 | -- | ||
diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb b/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb index a0673fd668..ad85fa2e9f 100644 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb +++ b/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb | |||
| @@ -34,6 +34,7 @@ SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2 \ | |||
| 34 | file://0001-eamad-fix-out-of-array-accesses.patch \ | 34 | file://0001-eamad-fix-out-of-array-accesses.patch \ |
| 35 | file://0001-mjpegdec-check-SE.patch \ | 35 | file://0001-mjpegdec-check-SE.patch \ |
| 36 | file://0001-alac-fix-nb_samples-order-case.patch \ | 36 | file://0001-alac-fix-nb_samples-order-case.patch \ |
| 37 | file://0001-h264-correct-ref-count-check-and-limit-fix-out-of-ar.patch \ | ||
| 37 | " | 38 | " |
| 38 | 39 | ||
| 39 | SRC_URI[md5sum] = "7f5beacaf1312db2db30a026b36888c4" | 40 | SRC_URI[md5sum] = "7f5beacaf1312db2db30a026b36888c4" |
