Magellan Linux

Contents of /trunk/xine-lib/patches/xine-lib-1.1.1-postproc.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 153 - (show annotations) (download)
Tue May 8 20:52:56 2007 UTC (17 years ago) by niro
File size: 833 byte(s)
-import

1 This patch makes sure that the xineplug_decode_ff plugin, that is used by xine
2 to decode streams using ffmpeg, links against libpostproc and does not rely on
3 the fact that it's pulled in from other libraries (libavcodec/libavutil). This
4 behaviour breaks when using ffmpeg 20060302 or previous with --as-needed
5 LDFLAGS.
6
7 See Gentoo Bug #124802.
8
9 Index: xine-lib-1.1.1/src/libffmpeg/Makefile.am
10 ===================================================================
11 --- xine-lib-1.1.1.orig/src/libffmpeg/Makefile.am
12 +++ xine-lib-1.1.1/src/libffmpeg/Makefile.am
13 @@ -2,7 +2,7 @@ include $(top_srcdir)/misc/Makefile.comm
14
15 if HAVE_FFMPEG
16 ff_cppflags = $(FFMPEG_CPPFLAGS)
17 -link_ffmpeg = $(FFMPEG_LIBS)
18 +link_ffmpeg = $(FFMPEG_LIBS) $(FFMPEG_POSTPROC_LIBS)
19 else
20 link_ffmpeg = \
21 $(top_builddir)/src/libffmpeg/libavcodec/libavcodec.la \