summaryrefslogtreecommitdiff
path: root/extra/mpd
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-09-07 15:12:14 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-09-07 15:12:14 +0000
commit17f3e93f2d2e9d6b429c34a2c107ee4d0b7b3973 (patch)
treea5dc572b00dd5ed1d8a3bbf53249fd4352ece559 /extra/mpd
parente2fb609d3af7a203357fd6ca983fef5f4dfba7eb (diff)
Wed Sep 7 15:12:12 UTC 2011
Diffstat (limited to 'extra/mpd')
-rw-r--r--extra/mpd/mpd-0.16.3_ffmpeg_sigsegv.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/extra/mpd/mpd-0.16.3_ffmpeg_sigsegv.patch b/extra/mpd/mpd-0.16.3_ffmpeg_sigsegv.patch
deleted file mode 100644
index a945a0a6a..000000000
--- a/extra/mpd/mpd-0.16.3_ffmpeg_sigsegv.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur mpd-0.16.3.orig/src/decoder/ffmpeg_decoder_plugin.c mpd-0.16.3/src/decoder/ffmpeg_decoder_plugin.c
---- mpd-0.16.3.orig/src/decoder/ffmpeg_decoder_plugin.c 2011-06-04 17:36:33.000000000 +0300
-+++ mpd-0.16.3/src/decoder/ffmpeg_decoder_plugin.c 2011-06-24 18:18:51.840218251 +0300
-@@ -321,7 +321,7 @@
- }
-
- //ffmpeg works with ours "fileops" helper
-- AVFormatContext *format_context;
-+ AVFormatContext *format_context = NULL;
- if (av_open_input_stream(&format_context, stream->io, input->uri,
- input_format, NULL) != 0) {
- g_warning("Open failed\n");
-@@ -470,7 +470,7 @@
- if (stream == NULL)
- return NULL;
-
-- AVFormatContext *f;
-+ AVFormatContext *f = NULL;
- if (av_open_input_stream(&f, stream->io, is->uri,
- input_format, NULL) != 0) {
- mpd_ffmpeg_stream_close(stream);