diff options
author | Stefan Holst <holstsn@users.sourceforge.net> | 2002-12-12 22:08:09 +0000 |
---|---|---|
committer | Stefan Holst <holstsn@users.sourceforge.net> | 2002-12-12 22:08:09 +0000 |
commit | 41760a052b481e67ba31af505352860be86b94bf (patch) | |
tree | 1cd421c33a9c976d0e932c286c0ae4cd59a27b63 /src/input/Makefile.am | |
parent | 0edd77bcd29eaadd898ba789ac6b594c13cd6eb4 (diff) | |
download | xine-lib-41760a052b481e67ba31af505352860be86b94bf.tar.gz xine-lib-41760a052b481e67ba31af505352860be86b94bf.tar.bz2 |
* Initial version of an rtsp input plugin. It is far from being perfect,
only a few streams work for now.
* A couple of fixes in pnm input plugin.
* Fixed stream info in demux_real.
CVS patchset: 3495
CVS date: 2002/12/12 22:08:09
Diffstat (limited to 'src/input/Makefile.am')
-rw-r--r-- | src/input/Makefile.am | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/input/Makefile.am b/src/input/Makefile.am index a5d301066..d662ba379 100644 --- a/src/input/Makefile.am +++ b/src/input/Makefile.am @@ -3,9 +3,9 @@ ## if HAVE_DVDNAV -SUBDIRS = libdvdread +SUBDIRS = libreal librtsp libdvdread else -SUBDIRS = libdvdread libdvdnav +SUBDIRS = libreal librtsp libdvdread libdvdnav endif LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic @@ -48,7 +48,8 @@ lib_LTLIBRARIES = \ $(in_vcd) \ xineplug_inp_mms.la \ xineplug_inp_stdin_fifo.la \ - xineplug_inp_pnm.la + xineplug_inp_pnm.la \ + xineplug_inp_rtsp.la #lib_LTLIBRARIES = \ # $(in_cda) \ @@ -102,6 +103,10 @@ xineplug_inp_pnm_la_SOURCES = input_pnm.c net_buf_ctrl.c pnm.c xineplug_inp_pnm_la_LIBADD = $(XINE_LIB) xineplug_inp_pnm_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +xineplug_inp_rtsp_la_SOURCES = input_rtsp.c net_buf_ctrl.c +xineplug_inp_rtsp_la_LIBADD = $(XINE_LIB) libreal/libreal.la librtsp/librtsp.la +xineplug_inp_rtsp_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + include_HEADERS = input_plugin.h noinst_HEADERS = net_buf_ctrl.h mms.h pnm.h |