diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-23 21:29:53 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-23 21:29:53 +0000 |
commit | c7afe17e53f1ca252ed721724016ed906dbd5e15 (patch) | |
tree | 7233501d981deecd2a43a3beca4d9e04eb3f8ba5 /src/demuxers/Makefile.am | |
parent | 9d0862e417d625ee429dcf18066aa56d1346684f (diff) | |
download | xine-lib-c7afe17e53f1ca252ed721724016ed906dbd5e15.tar.gz xine-lib-c7afe17e53f1ca252ed721724016ed906dbd5e15.tar.bz2 |
- added raw dv demuxer
- avi demuxer knows frame numbers
CVS patchset: 3658
CVS date: 2002/12/23 21:29:53
Diffstat (limited to 'src/demuxers/Makefile.am')
-rw-r--r-- | src/demuxers/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index de5446db0..f0d1b5a28 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -48,7 +48,8 @@ lib_LTLIBRARIES = $(ogg_module) $(asf_module) $(mng_module) \ xineplug_dmx_real.la \ xineplug_dmx_realaudio.la \ xineplug_dmx_eawve.la \ - xineplug_dmx_mpeg_ts.la + xineplug_dmx_mpeg_ts.la \ + xineplug_dmx_rawdv.la xineplug_dmx_ogg_la_SOURCES = demux_ogg.c xineplug_dmx_ogg_la_LIBADD = $(OGG_LIBS) $(VORBIS_LIBS) $(XINELIB) @@ -154,6 +155,10 @@ xineplug_dmx_eawve_la_SOURCES = demux_eawve.c xineplug_dmx_eawve_la_LIBADD = $(XINELIB) xineplug_dmx_eawve_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +xineplug_dmx_rawdv_la_SOURCES = demux_rawdv.c +xineplug_dmx_rawdv_la_LIBADD = $(XINELIB) +xineplug_dmx_rawdv_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + xineplug_dmx_mng_la_SOURCES = demux_mng.c xineplug_dmx_mng_la_LIBADD = $(XINELIB) $(ZLIB_LIBS) $(MNG_LIBS) xineplug_dmx_mng_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ |