diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2013-10-31 13:27:49 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2013-10-31 13:27:49 +0200 |
commit | 77fc2b896b6d514ee7975cdf6c4338b3560e2810 (patch) | |
tree | 2ca7e2b518424cd28e688be40bba9346e4ce8b20 /include/xine | |
parent | 88d100d92e0be7ecfee85aae05b3689ea628bcba (diff) | |
download | xine-lib-77fc2b896b6d514ee7975cdf6c4338b3560e2810.tar.gz xine-lib-77fc2b896b6d514ee7975cdf6c4338b3560e2810.tar.bz2 |
Added INPUT_CAP_NO_CACHE
(Do not use input_cache plugin)
Diffstat (limited to 'include/xine')
-rw-r--r-- | include/xine/input_plugin.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/xine/input_plugin.h b/include/xine/input_plugin.h index e9e17cbbc..95c5757c2 100644 --- a/include/xine/input_plugin.h +++ b/include/xine/input_plugin.h @@ -311,6 +311,12 @@ struct input_plugin_s { #define INPUT_CAP_RIP_FORBIDDEN 0x00000100 +/* + * INPUT_CAP_NO_CACHE: + * do not use input cache plugin + */ +#define INPUT_CAP_NO_CACHE 0x00000200 + #define INPUT_IS_SEEKABLE(input) (((input)->get_capabilities(input) & INPUT_CAP_SEEKABLE) != 0) |