diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2003-10-19 16:28:10 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2003-10-19 16:28:10 +0000 |
commit | 408c485632024e3e8839d32cee5a89f400678183 (patch) | |
tree | 7ce63f5374f37eb87f51fd9323e44e798d2a34d0 /src | |
parent | a8cb6e35eff4d1f5ed8a8bb1250015ffac34db77 (diff) | |
download | xine-lib-408c485632024e3e8839d32cee5a89f400678183.tar.gz xine-lib-408c485632024e3e8839d32cee5a89f400678183.tar.bz2 |
Disable saving of real streams - will make users angry but will stop real from getting angry :)
CVS patchset: 5545
CVS date: 2003/10/19 16:28:10
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_pnm.c | 2 | ||||
-rw-r--r-- | src/input/input_rtsp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_pnm.c b/src/input/input_pnm.c index 0a093f4ee..a15bb7745 100644 --- a/src/input/input_pnm.c +++ b/src/input/input_pnm.c @@ -152,7 +152,7 @@ static off_t pnm_plugin_get_length (input_plugin_t *this_gen) { } static uint32_t pnm_plugin_get_capabilities (input_plugin_t *this_gen) { - return INPUT_CAP_PREVIEW; + return INPUT_CAP_PREVIEW | INPUT_CAP_RIP_FORBIDDEN; } static uint32_t pnm_plugin_get_blocksize (input_plugin_t *this_gen) { diff --git a/src/input/input_rtsp.c b/src/input/input_rtsp.c index 138c1ef6a..41e27c437 100644 --- a/src/input/input_rtsp.c +++ b/src/input/input_rtsp.c @@ -156,7 +156,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; + return INPUT_CAP_PREVIEW | INPUT_CAP_RIP_FORBIDDEN; } static uint32_t rtsp_plugin_get_blocksize (input_plugin_t *this_gen) { |