From ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 27 Apr 2017 11:04:51 +0200 Subject: recipes: remove blacklisted recipes * as PNBLACKLIST message says, these recipes are blacklisted for long time and nobody showed any interest to fix them * remove all unused .patch and .inc files as well Signed-off-by: Martin Jansa --- ...f-compute-probe-buffer-size-more-reliably.patch | 45 ---------------------- 1 file changed, 45 deletions(-) delete mode 100644 meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg-0.10.13/0001-lavf-compute-probe-buffer-size-more-reliably.patch (limited to 'meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg-0.10.13/0001-lavf-compute-probe-buffer-size-more-reliably.patch') diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg-0.10.13/0001-lavf-compute-probe-buffer-size-more-reliably.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg-0.10.13/0001-lavf-compute-probe-buffer-size-more-reliably.patch deleted file mode 100644 index ea4aa222b3..0000000000 --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg-0.10.13/0001-lavf-compute-probe-buffer-size-more-reliably.patch +++ /dev/null @@ -1,45 +0,0 @@ -gst-ffmpeg: lavf: compute probe buffer size more reliably. - -The previous code computes the offset by reversing the growth -of the allocated buffer size: it is complex and did lead to -inconsistencies when the size limit is reached. - -Fix trac ticket #1991. -(cherry picked from commit 03847eb8259291b4ff1bd840bd779d0699d71f96) - -Conflicts: - libavformat/utils.c - -Upstream-Status: Backport - -Signed-off-by: Yue Tao - ---- - libavformat/utils.c | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/libavformat/utils.c b/libavformat/utils.c -index 7940037..be73c4a 100644 ---- a/gst-libs/ext/libav/libavformat/utils.c -+++ b/gst-libs/ext/libav/libavformat/utils.c -@@ -459,7 +459,7 @@ int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt, - { - AVProbeData pd = { filename ? filename : "", NULL, -offset }; - unsigned char *buf = NULL; -- int ret = 0, probe_size; -+ int ret = 0, probe_size, buf_offset = 0; - - if (!max_probe_size) { - max_probe_size = PROBE_BUF_MAX; -@@ -499,7 +499,7 @@ int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt, - score = 0; - ret = 0; /* error was end of file, nothing read */ - } -- pd.buf_size += ret; -+ pd.buf_size = buf_offset += ret; - pd.buf = &buf[offset]; - - memset(pd.buf + pd.buf_size, 0, AVPROBE_PADDING_SIZE); --- -1.7.5.4 - -- cgit 1.2.3-korg