diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-05-03 00:02:42 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-05-03 00:02:42 +0000 |
commit | c6d82d11056a2f36b90215f96cfaa10707d39129 (patch) | |
tree | 1f2c5cb3fe16755d147f426a268bddf43707a54a /src/input/input_file.c | |
parent | c6a279807a3f243915bd13061d1161eaa73275a4 (diff) | |
download | xine-lib-c6d82d11056a2f36b90215f96cfaa10707d39129.tar.gz xine-lib-c6d82d11056a2f36b90215f96cfaa10707d39129.tar.bz2 |
Add xine_get_autoplay_*() functions.
CVS patchset: 56
CVS date: 2001/05/03 00:02:42
Diffstat (limited to 'src/input/input_file.c')
-rw-r--r-- | src/input/input_file.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/input/input_file.c b/src/input/input_file.c index 71a62ca73..be1cd12de 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -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_file.c,v 1.6 2001/04/30 23:07:00 guenter Exp $ + * $Id: input_file.c,v 1.7 2001/05/03 00:02:42 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -45,7 +45,8 @@ typedef struct file_input_plugin_s { } file_input_plugin_t; static uint32_t file_plugin_get_capabilities (input_plugin_t *this_gen) { - return INPUT_CAP_SEEKABLE; +#warning "remove AUTOPLAY capability." + return INPUT_CAP_SEEKABLE | INPUT_CAP_AUTOPLAY; } static int file_plugin_open (input_plugin_t *this_gen, char *mrl) { |