From f8232d79aff4fa419c2a0e7ccae38615c9c1157a Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Mon, 18 May 2015 16:58:40 +0300 Subject: gstreamer: remove 0.10 recipes gstreamer 0.10 is still available from meta-openembedded/meta-multimedia See also https://bugzilla.yoctoproject.org/show_bug.cgi?id=6294 http://lists.openembedded.org/pipermail/openembedded-core/2015-April/104276.html (From OE-Core rev: fe44ac167a2a76531af3519f3889fce92024567b) Signed-off-by: Alexander Kanavin Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- ...alment-Check-that-the-picture-is-not-in-a.patch | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-error_concealment-Check-that-the-picture-is-not-in-a.patch (limited to 'meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-error_concealment-Check-that-the-picture-is-not-in-a.patch') diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-error_concealment-Check-that-the-picture-is-not-in-a.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-error_concealment-Check-that-the-picture-is-not-in-a.patch deleted file mode 100644 index 8eef6e99cc..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-error_concealment-Check-that-the-picture-is-not-in-a.patch +++ /dev/null @@ -1,37 +0,0 @@ -gst-ffmpeg: error_concealment: Check that the picture is not in a half - -Fixes state becoming inconsistent -Fixes a null pointer dereference - -Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind -Signed-off-by: Michael Niedermayer -(cherry picked from commit 23318a57358358e7a4dc551e830e4503f0638cfe) - -Upstream-Status: Backport - -Signed-off-by: Yue Tao - ---- - libavcodec/error_resilience.c | 6 ++++++ - 1 files changed, 6 insertions(+), 0 deletions(-) - -diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c -index 01f7424..2b6bc42 100644 ---- a/gst-libs/ext/libav/libavcodec/error_resilience.c -+++ b/gst-libs/ext/libav/libavcodec/error_resilience.c -@@ -793,6 +793,12 @@ void ff_er_frame_end(MpegEncContext *s){ - s->picture_structure != PICT_FRAME || // we dont support ER of field pictures yet, though it should not crash if enabled - s->error_count==3*s->mb_width*(s->avctx->skip_top + s->avctx->skip_bottom)) return; - -+ if ( s->picture_structure == PICT_FRAME -+ && s->current_picture.linesize[0] != s->current_picture_ptr->linesize[0]) { -+ av_log(s->avctx, AV_LOG_ERROR, "Error concealment not possible, frame not fully initialized\n"); -+ return; -+ } -+ - if(s->current_picture.motion_val[0] == NULL){ - av_log(s->avctx, AV_LOG_ERROR, "Warning MVs not available\n"); - --- -1.7.5.4 - -- cgit v1.2.3-54-g00ecf