diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-23 18:56:55 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-23 18:56:55 +0000 |
commit | b2dfbe82d7c68198548995aa309a8883ef3da521 (patch) | |
tree | dab817ecd8e1a32a9932f89280b865592a888329 /src/input/Makefile.am | |
parent | 1886d565632d0cafc381a97e066a122f6a9ccf2c (diff) | |
download | xine-lib-b2dfbe82d7c68198548995aa309a8883ef3da521.tar.gz xine-lib-b2dfbe82d7c68198548995aa309a8883ef3da521.tar.bz2 |
moved network buffering to a seperate file so all network/stream input plugins
can share that code.
added ability to control scr adjustability to metronom (get/set options)
so strict_scr is no longer needed.
CVS patchset: 1620
CVS date: 2002/03/23 18:56:55
Diffstat (limited to 'src/input/Makefile.am')
-rw-r--r-- | src/input/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/input/Makefile.am b/src/input/Makefile.am index b09bc480e..cd966234e 100644 --- a/src/input/Makefile.am +++ b/src/input/Makefile.am @@ -30,29 +30,29 @@ xineplug_inp_file_la_LDFLAGS = -avoid-version -module xineplug_inp_dvd_la_SOURCES = input_dvd.c dvd_udf.c read_cache.c xineplug_inp_dvd_la_LDFLAGS = -avoid-version -module -xineplug_inp_net_la_SOURCES = input_net.c strict_scr.c +xineplug_inp_net_la_SOURCES = input_net.c net_buf_ctrl.c xineplug_inp_net_la_LDFLAGS = -avoid-version -module -xineplug_inp_mms_la_SOURCES = input_mms.c strict_scr.c mms.c asxparser.c +xineplug_inp_mms_la_SOURCES = input_mms.c net_buf_ctrl.c mms.c asxparser.c xineplug_inp_mms_la_LDFLAGS = -avoid-version -module xineplug_inp_vcd_la_SOURCES = input_vcd.c xineplug_inp_vcd_la_LDFLAGS = -avoid-version -module -xineplug_inp_stdin_fifo_la_SOURCES = input_stdin_fifo.c strict_scr.c +xineplug_inp_stdin_fifo_la_SOURCES = input_stdin_fifo.c net_buf_ctrl.c xineplug_inp_stdin_fifo_la_LDFLAGS = -avoid-version -module xineplug_inp_rtp_la_SOURCES = input_rtp.c xineplug_inp_rtp_la_LDFLAGS = -avoid-version -module -xineplug_inp_http_la_SOURCES = input_http.c +xineplug_inp_http_la_SOURCES = input_http.c net_buf_ctrl.c xineplug_inp_http_la_LDFLAGS = -avoid-version -module xineplug_inp_cda_la_SOURCES = input_cda.c xineplug_inp_cda_la_LDFLAGS = -avoid-version -module include_HEADERS = input_plugin.h -noinst_HEADERS = dvd_udf.h read_cache.h strict_scr.h mms.h +noinst_HEADERS = dvd_udf.h read_cache.h net_buf_ctrl.h mms.h EXTRA_DIST = input_dvd.c dvd_udf.c input_vcd.c read_cache.c |