diff options
Diffstat (limited to 'src/input/input_plugin.h')
-rw-r--r-- | src/input/input_plugin.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h index 2e9f0dca6..146207e76 100644 --- a/src/input/input_plugin.h +++ b/src/input/input_plugin.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_plugin.h,v 1.60 2005/10/14 21:02:16 miguelfreitas Exp $ + * $Id: input_plugin.h,v 1.61 2006/12/18 21:22:45 klan Exp $ */ #ifndef HAVE_INPUT_PLUGIN_H @@ -297,6 +297,15 @@ struct input_plugin_s { #define INPUT_CAP_RIP_FORBIDDEN 0x00000100 +/* + * INPUT_CAP_NOCACHE: + * means that buffered input must not be used. + * (i.e. disable input_cache internal plugin) + */ + +#define INPUT_CAP_NOCACHE 0x00000200 + + #define INPUT_IS_SEEKABLE(input) (((input)->get_capabilities(input) & INPUT_CAP_SEEKABLE) != 0) #define INPUT_OPTIONAL_UNSUPPORTED 0 |