diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2015-05-18 16:58:40 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-20 21:40:13 +0100 |
| commit | fe44ac167a2a76531af3519f3889fce92024567b (patch) | |
| tree | 075399157fcdf42bcb2772aa4e09ff177eb04ab7 | |
| parent | cae5c340e4c7af00a181d11346120b550ba83175 (diff) | |
| download | openembedded-core-fe44ac167a2a76531af3519f3889fce92024567b.tar.gz openembedded-core-fe44ac167a2a76531af3519f3889fce92024567b.tar.bz2 openembedded-core-fe44ac167a2a76531af3519f3889fce92024567b.zip | |
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
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
68 files changed, 0 insertions, 12818 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-aacdec-check-channel-count.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-aacdec-check-channel-count.patch deleted file mode 100644 index 7da0e14525..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-aacdec-check-channel-count.patch +++ /dev/null @@ -1,34 +0,0 @@ -gst-ffmpeg: aacdec: check channel count - -Prevent out of array accesses - -Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> -(cherry picked from commit 96f452ac647dae33c53c242ef3266b65a9beafb6) - -Upstream-Status: Backport - -Signed-off-by: Yue Tao <yue.tao@windriver.com> ---- - libavcodec/aacdec.c | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) - -diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c -index 239153a..6c17c33 100644 ---- a/gst-libs/ext/libav/libavcodec/aacdec.c -+++ b/gst-libs/ext/libav/libavcodec/aacdec.c -@@ -914,6 +914,11 @@ static av_cold int aac_decode_init(AVCodecContext *avctx) - } - } - -+ if (avctx->channels > MAX_CHANNELS) { -+ av_log(avctx, AV_LOG_ERROR, "Too many channels\n"); -+ return AVERROR_INVALIDDATA; -+ } -+ - AAC_INIT_VLC_STATIC( 0, 304); - AAC_INIT_VLC_STATIC( 1, 270); - AAC_INIT_VLC_STATIC( 2, 550); --- -1.7.5.4 - diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-alac-fix-nb_samples-order-case.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-alac-fix-nb_samples-order-case.patch deleted file mode 100644 index 10ce0f332c..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-alac-fix-nb_samples-order-case.patch +++ /dev/null @@ -1,30 +0,0 @@ -From e0884eadf6a15e93142131b695f48776f9a0ac31 Mon Sep 17 00:00:00 2001 -From: Michael Niedermayer <michaelni@gmx.at> -Date: Sat, 10 Nov 2012 17:14:04 +0100 -Subject: [PATCH] alac: fix nb_samples < order case - -Upstream-Status: Backport - -Commit e0884eadf6a15e93142131b695f48776f9a0ac31 release/1.0 - -Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> -(cherry picked from commit fd4f4923cce6a2cbf4f48640b4ac706e614a1594) ---- - libavcodec/alac.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/libavcodec/alac.c b/libavcodec/alac.c -index 9cd1737..e8e844a 100644 ---- a/gst-libs/ext/libav/libavcodec/alac.c -+++ b/gst-libs/ext/libav/libavcodec/alac.c -@@ -278,7 +278,7 @@ static void predictor_decompress_fir_ada - - /* read warm-up samples */ - if (predictor_coef_num > 0) -- for (i = 0; i < predictor_coef_num; i++) { -+ for (i = 0; i < predictor_coef_num && i < output_size; i++) { - int32_t val; - - val = buffer_out[i] + error_buffer[i+1]; --- diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-alsdec-check-block-length.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-alsdec-check-block-length.patch deleted file mode 100644 index 73980f4265..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-alsdec-check-block-length.patch +++ /dev/null @@ -1,61 +0,0 @@ -From 6df0d3e2916c223dbe4262bf1b876dff1cb3f980 Mon Sep 17 00:00:00 2001 -From: Michael Niedermayer <michaelni@gmx.at> -Date: Wed, 12 Dec 2012 12:28:45 +0100 -Subject: [PATCH] alsdec: check block length - -Upstream-Status: Backport - -Commit 6df0d3e2916c223dbe4262bf1b876dff1cb3f980 release/1.0 - -Fix writing over the end - -Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> -(cherry picked from commit 0ceca269b66ec12a23bf0907bd2c220513cdbf16) - -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> ---- - libavcodec/alsdec.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c -index 46dd0b4..1095b01 100644 ---- a/gst-libs/ext/libav/libavcodec/alsdec.c -+++ b/gst-libs/ext/libav/libavcodec/alsdec.c -@@ -552,12 +552,15 @@ static void get_block_sizes(ALSDecContext *ctx, unsigned int *div_blocks, - - /** Read the block data for a constant block - */ --static void read_const_block_data(ALSDecContext *ctx, ALSBlockData *bd) -+static int read_const_block_data(ALSDecContext *ctx, ALSBlockData *bd) - { - ALSSpecificConfig *sconf = &ctx->sconf; - AVCodecContext *avctx = ctx->avctx; - GetBitContext *gb = &ctx->gb; - -+ if (bd->block_length <= 0) -+ return -1; -+ - *bd->raw_samples = 0; - *bd->const_block = get_bits1(gb); // 1 = constant value, 0 = zero block (silence) - bd->js_blocks = get_bits1(gb); -@@ -572,6 +575,8 @@ static void read_const_block_data(ALSDecContext *ctx, ALSBlockData *bd) - - // ensure constant block decoding by reusing this field - *bd->const_block = 1; -+ -+ return 0; - } - - -@@ -971,7 +976,8 @@ static int read_block(ALSDecContext *ctx, ALSBlockData *bd) - if (read_var_block_data(ctx, bd)) - return -1; - } else { -- read_const_block_data(ctx, bd); -+ if (read_const_block_data(ctx, bd) < 0) -+ return -1; - } - - return 0; --- diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-atrac3dec-Check-coding-mode-against-channels.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-atrac3dec-Check-coding-mode-against-channels.patch deleted file mode 100644 index 42cb5f40b4..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-atrac3dec-Check-coding-mode-against-channels.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 2502914c5f8eb77659d7c0868396862557a63245 Mon Sep 17 00:00:00 2001 -From: Michael Niedermayer <michaelni@gmx.at> -Date: Fri, 9 Nov 2012 13:26:20 +0100 -Subject: [PATCH] atrac3dec: Check coding mode against channels. - -Upstream-Status: Backport - -Commit 2502914c5f8eb77659d7c0868396862557a63245 release/1.0 - -Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> -(cherry picked from commit 13451f5520ce6b0afde861b2285dda659f8d4fb4) - -Conflicts: - - libavcodec/atrac3.c ---- - libavcodec/atrac3.c | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c -index 7d076be..1da4c78 100644 ---- a/gst-libs/ext/libav/libavcodec/atrac3.c -+++ b/gst-libs/ext/libav/libavcodec/atrac3.c -@@ -955,6 +955,11 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx) - } - /* Check the extradata. */ - -+ if (q->codingMode == JOINT_STEREO && avctx->channels < 2) { -+ av_log(avctx, AV_LOG_ERROR, "Invalid coding mode\n"); -+ return AVERROR_INVALIDDATA; -+ } -+ - if (q->atrac3version != 4) { - av_log(avctx,AV_LOG_ERROR,"Version %d != 4.\n",q->atrac3version); - return AVERROR_INVALIDDATA; --- diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-dsputil-fix-signedness-in-sizeof-comparissio.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-dsputil-fix-signedness-in-sizeof-comparissio.patch deleted file mode 100644 index 31fa51a3ea..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-dsputil-fix-signedness-in-sizeof-comparissio.patch +++ /dev/null @@ -1,40 +0,0 @@ -From a99aff4e4bbef8e64b51f267cd1769214e1b4e80 Mon Sep 17 00:00:00 2001 -From: Michael Niedermayer <michaelni@gmx.at> -Date: Fri, 30 Aug 2013 23:40:47 +0200 -Subject: [PATCH] avcodec/dsputil: fix signedness in sizeof() comparissions - -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> -(cherry picked from commit 454a11a1c9c686c78aa97954306fb63453299760) - -Upstream-Status: Backport - -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> ---- - libavcodec/dsputil.c | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c -index 53dc2eb..6264832 100644 ---- a/gst-libs/ext/libav/libavcodec/dsputil.c -+++ b/gst-libs/ext/libav/libavcodec/dsputil.c -@@ -1912,7 +1912,7 @@ void ff_set_cmp(DSPContext* c, me_cmp_func *cmp, int type){ - - static void add_bytes_c(uint8_t *dst, uint8_t *src, int w){ - long i; -- for(i=0; i<=w-sizeof(long); i+=sizeof(long)){ -+ for(i=0; i<=w-(int)sizeof(long); i+=sizeof(long)){ - long a = *(long*)(src+i); - long b = *(long*)(dst+i); - *(long*)(dst+i) = ((a&pb_7f) + (b&pb_7f)) ^ ((a^b)&pb_80); -@@ -1937,7 +1937,7 @@ static void diff_bytes_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w){ - } - }else - #endif -- for(i=0; i<=w-sizeof(long); i+=sizeof(long)){ -+ for(i=0; i<=w-(int)sizeof(long); i+=sizeof(long)){ - long a = *(long*)(src1+i); - long b = *(long*)(src2+i); - *(long*)(dst+i) = ((a|pb_80) - (b&pb_7f)) ^ ((a^b^pb_80)&pb_80); --- -1.7.5.4 - diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-msrle-use-av_image_get_linesize-to-calculate.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-msrle-use-av_image_get_linesize-to-calculate.patch deleted file mode 100644 index b0a3fb10c7..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-msrle-use-av_image_get_linesize-to-calculate.patch +++ /dev/null @@ -1,50 +0,0 @@ -From 573d5fdedae72bf59d8c0b0766fdee171063d36f Mon Sep 17 00:00:00 2001 -From: Michael Niedermayer <michaelni@gmx.at> -Date: Sun, 16 Feb 2014 23:08:52 +0100 -Subject: [PATCH] avcodec/msrle: use av_image_get_linesize() to calculate the - linesize - -Upstream-Status: Backport - -Commit 573d5fdedae72bf59d8c0b0766fdee171063d36f release/0.9 - -Fixes out of array access -Fixes: 14a74a0a2dc67ede543f0e35d834fbbe-asan_heap-oob_49572c_556_cov_215466444_44_001_engine_room.mov -Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> -(cherry picked from commit c919e1ca2ecfc47d796382973ba0e48b8f6f92a2) - -Conflicts: - - libavcodec/msrle.c -(cherry picked from commit bc1c8ec5e65098fd2ccd8456f667151dfc9cda42) - -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> ---- - libavcodec/msrle.c | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) - -diff --git a/libavcodec/msrle.c b/libavcodec/msrle.c -index 30159bb..c39ae7b 100644 ---- a/gst-libs/ext/libav/libavcodec/msrle.c -+++ b/gst-libs/ext/libav/libavcodec/msrle.c -@@ -35,6 +35,7 @@ - #include "avcodec.h" - #include "dsputil.h" - #include "msrledec.h" -+#include "libavutil/imgutils.h" - - typedef struct MsrleContext { - AVCodecContext *avctx; -@@ -107,7 +108,7 @@ static int msrle_decode_frame(AVCodecContext *avctx, - - /* FIXME how to correctly detect RLE ??? */ - if (avctx->height * istride == avpkt->size) { /* assume uncompressed */ -- int linesize = avctx->width * avctx->bits_per_coded_sample / 8; -+ int linesize = av_image_get_linesize(avctx->pix_fmt, avctx->width, 0); - uint8_t *ptr = s->frame.data[0]; - uint8_t *buf = avpkt->data + (avctx->height-1)*istride; - int i, j; --- -1.7.5.4 - diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-parser-reset-indexes-on-realloc-failure.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-parser-reset-indexes-on-realloc-failure.patch deleted file mode 100644 index 5ff65834e4..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-avcodec-parser-reset-indexes-on-realloc-failure.patch +++ /dev/null @@ -1,50 +0,0 @@ -gst-ffmpeg: avcodec/parser: reset indexes on realloc failure - -Fixes Ticket2982 - -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> -(cherry picked from commit f31011e9abfb2ae75bb32bc44e2c34194c8dc40a) - -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> - -Upstream-Status: Backport - -Signed-off-by: Yue Tao <yue.tao@windriver.com> - ---- - libavcodec/parser.c | 10 +++++++--- - 1 files changed, 7 insertions(+), 3 deletions(-) - -diff --git a/libavcodec/parser.c b/libavcodec/parser.c -index 2c6de6e..66eca06 100644 ---- a/gst-libs/ext/libav/libavcodec/parser.c -+++ b/gst-libs/ext/libav/libavcodec/parser.c -@@ -241,8 +241,10 @@ int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_s - if(next == END_NOT_FOUND){ |
