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 /meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-ffserver-set-oformat.patch | |
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>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-ffserver-set-oformat.patch')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-ffserver-set-oformat.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-ffserver-set-oformat.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-ffserver-set-oformat.patch deleted file mode 100644 index 80325db4d6..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-ffserver-set-oformat.patch +++ /dev/null @@ -1,36 +0,0 @@ -gst-ffmpeg: ffserver: set oformat - -Fix Ticket1986 - -Signed-off-by: Michael Niedermayer <michaelni@gmx.at> -(cherry picked from commit cbe43e62c9ac7d4aefdc13476f6f691bd626525f) - -Upstream-Status: Backport - ---- - ffserver.c | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) - -diff --git a/ffserver.c b/ffserver.c -index 4044d0f..8740140 100644 ---- a/gst-libs/ext/libav/ffserver.c -+++ b/gst-libs/ext/libav/ffserver.c -@@ -2937,12 +2937,14 @@ static int prepare_sdp_description(FFStream *stream, uint8_t **pbuffer, - { - AVFormatContext *avc; - AVStream *avs = NULL; -+ AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL); - int i; - - avc = avformat_alloc_context(); -- if (avc == NULL) { -+ if (avc == NULL || !rtp_format) { - return -1; - } -+ avc->oformat = rtp_format; - av_dict_set(&avc->metadata, "title", - stream->title[0] ? stream->title : "No Title", 0); - avc->nb_streams = stream->nb_streams; --- -1.7.5.4 - |