diff options
Diffstat (limited to 'include')
-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) |