summaryrefslogtreecommitdiff
path: root/src/libffmpeg/Makefile.am
diff options
context:
space:
mode:
authorJames Stembridge <jstembridge@users.sourceforge.net>2004-01-31 01:19:17 +0000
committerJames Stembridge <jstembridge@users.sourceforge.net>2004-01-31 01:19:17 +0000
commit80039cba62e6fc86d4e4e4517e756e6e2219bf78 (patch)
tree25cae3069a42a53ee09f80adb40d910b2258c635 /src/libffmpeg/Makefile.am
parent12ce480315abc984c997eb2ed3357d116712915a (diff)
downloadxine-lib-80039cba62e6fc86d4e4e4517e756e6e2219bf78.tar.gz
xine-lib-80039cba62e6fc86d4e4e4517e756e6e2219bf78.tar.bz2
Split ffmpeg interface into audio and video specific files
CVS patchset: 6087 CVS date: 2004/01/31 01:19:17
Diffstat (limited to 'src/libffmpeg/Makefile.am')
-rw-r--r--src/libffmpeg/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libffmpeg/Makefile.am b/src/libffmpeg/Makefile.am
index 8bb516df8..4ba409023 100644
--- a/src/libffmpeg/Makefile.am
+++ b/src/libffmpeg/Makefile.am
@@ -13,16 +13,18 @@ lib_LTLIBRARIES = xineplug_decode_ff.la
if HAVE_DXR3
AM_CPPFLAGS = -I$(top_srcdir)/src/dxr3 $(X_CFLAGS)
-xineplug_decode_ff_la_SOURCES = xine_decoder.c xine_encoder.c
+xineplug_decode_ff_la_SOURCES = xine_decoder.c audio_decoder.c video_decoder.c xine_encoder.c
# The dxr3 uses ffmpegs MPEG encoder by dlopen()ing the ffmpeg plugin and
# dlsym()ing the necessary function. Therefore we must allow more exported
# symbols and cannot use @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_ff_la_LDFLAGS = -avoid-version -module
else
-xineplug_decode_ff_la_SOURCES = xine_decoder.c
+xineplug_decode_ff_la_SOURCES = xine_decoder.c audio_decoder.c video_decoder.c
xineplug_decode_ff_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
endif
xineplug_decode_ff_la_LIBADD = $(MLIB_LIBS) $(XINE_LIB) -lm \
$(top_builddir)/src/libffmpeg/libavcodec/libavcodec.la \
$(top_builddir)/src/libffmpeg/libavcodec/libpostproc/libpostprocess.la
+
+noinst_HEADERS = xine_decoder.h