packages/multimedia/minidlna/patches/040-minidlna-1.0.25-fix-libavformat-api-feature-check.patch
juhosg e91c46c25c minidlna: bump version to 1.0.25
Version bump minidlna to 1.0.25 and add an additional patch.
Patch is accepted upstream, but not yet released.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@35658 3c298f89-4303-0410-b956-a3cf2f4a3e73
2013-02-18 10:04:17 +00:00

12 lines
393 B
Diff

--- a/metadata.c 2012-08-27 23:00:06.997932249 +0100
+++ b/metadata.c 2012-08-27 23:10:07.716582960 +0100
@@ -110,7 +110,7 @@ lav_open(AVFormatContext **ctx, const ch
static inline void
lav_close(AVFormatContext *ctx)
{
-#if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(2<<8)+0)
+#if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(17<<8)+0)
avformat_close_input(&ctx);
#else
av_close_input_file(ctx);