* control the pace of reading.
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
- * $Id: input_ext-intf.h,v 1.92 2003/07/27 14:10:02 massiot Exp $
+ * $Id: input_ext-intf.h,v 1.93 2003/08/02 15:22:07 fenrir Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
int (* pf_rewind ) ( input_thread_t * );
/* NULL if we don't support going *
* backwards (it's gonna be fun) */
+ int (* pf_demux_control ) ( input_thread_t *, int, va_list );
demux_sys_t * p_demux_data; /* data of the demux */
/* Buffer manager */
* decoders.
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
- * $Id: input.c,v 1.235 2003/07/23 22:01:25 gbazin Exp $
+ * $Id: input.c,v 1.236 2003/08/02 15:22:07 fenrir Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
p_input->psz_source = strdup( p_item->psz_uri );
/* Demux */
- p_input->p_demux = NULL;
+ p_input->p_demux = NULL;
+ p_input->pf_demux = NULL;
+ p_input->pf_rewind = NULL;
+ p_input->pf_demux_control = NULL;
/* Access */
p_input->p_access = NULL;