diff options
author | Claudio Ciccani <klan@users.sourceforge.net> | 2006-12-22 16:42:20 +0000 |
---|---|---|
committer | Claudio Ciccani <klan@users.sourceforge.net> | 2006-12-22 16:42:20 +0000 |
commit | 40df4b4fb7b470895f1e73e9eb66df177f9e910b (patch) | |
tree | 2ecb56a137e919509796bb3fcb29655350c0d9c6 /src/input/input_rtsp.c | |
parent | efab2aab1e401c4a7ed564ab5535ba367bce29ed (diff) | |
download | xine-lib-40df4b4fb7b470895f1e73e9eb66df177f9e910b.tar.gz xine-lib-40df4b4fb7b470895f1e73e9eb66df177f9e910b.tar.bz2 |
Removed INPUT_CAP_NOCACHE.
Modified rtsp_session_read() to break reading after the end of the header.
Support user-specified bandwidth via the "media.network.bandwidth" config option.
CVS patchset: 8433
CVS date: 2006/12/22 16:42:20
Diffstat (limited to 'src/input/input_rtsp.c')
-rw-r--r-- | src/input/input_rtsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_rtsp.c b/src/input/input_rtsp.c index bcbc19555..fec7b9713 100644 --- a/src/input/input_rtsp.c +++ b/src/input/input_rtsp.c @@ -157,7 +157,7 @@ static off_t rtsp_plugin_get_length (input_plugin_t *this_gen) { } static uint32_t rtsp_plugin_get_capabilities (input_plugin_t *this_gen) { - return INPUT_CAP_PREVIEW | INPUT_CAP_RIP_FORBIDDEN | INPUT_CAP_NOCACHE; + return INPUT_CAP_PREVIEW | INPUT_CAP_RIP_FORBIDDEN; } static uint32_t rtsp_plugin_get_blocksize (input_plugin_t *this_gen) { |