summaryrefslogtreecommitdiff
path: root/libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-11-02 08:27:31 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-11-02 08:27:31 -0200
commit3621c0f289d569fec69f312f3a7d6ab385b9e474 (patch)
tree1dad1a9d21fc9f1adf7fd982b5ccea3355c69e1c /libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch
parent7dfc9bf7e1d8b5e0d635f022762cf15a9b37f7ee (diff)
mplayer-libre-36498-2: updating version
* update to snapshot from 2013-10-30 * use ffmpeg 2.1 source tarball instead of latest git checkout * enable opus * fix samba support * add stream support for KDE to desktop file
Diffstat (limited to 'libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch')
-rw-r--r--libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch b/libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch
deleted file mode 100644
index c8a527cf3..000000000
--- a/libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 5194f95d39ffbb0a4a7b027d8f1b084436feb22c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= <b@bpiotrowski.pl>
-Date: Sun, 14 Jul 2013 10:51:11 +0200
-Subject: [PATCH] demux_gif: declare missing PrintGifError
-
-Apparently it has been removed from newer Giflib releases.
----
- libmpdemux/demux_gif.c | 10 ++++++++++
- 1 file changed, 10 insertions(+)
-
-diff --git a/libmpdemux/demux_gif.c b/libmpdemux/demux_gif.c
-index eee7a85..3d761c0 100644
---- a/libmpdemux/demux_gif.c
-+++ b/libmpdemux/demux_gif.c
-@@ -44,6 +44,16 @@ typedef struct {
-
- #define GIF_SIGNATURE (('G' << 16) | ('I' << 8) | 'F')
-
-+static void PrintGifError(void)
-+{
-+ char *Err = GifErrorString();
-+
-+ if (Err != NULL)
-+ fprintf(stderr, "\nGIF-LIB error: %s.\n", Err);
-+ else
-+ fprintf(stderr, "\nGIF-LIB undefined error %d.\n", GifError());
-+}
-+
- #ifndef CONFIG_GIF_TVT_HACK
- // not supported by certain versions of the library
- static int my_read_gif(GifFileType *gif, uint8_t *buf, int len)
---
-1.8.3.2
-