Commit ed8d7b24 authored by Laurent Aimar's avatar Laurent Aimar

* all: added a pf_demux_control member to input_thread_t. It is currently

 unused.
parent da866289
......@@ -4,7 +4,7 @@
* 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>
*
......@@ -319,6 +319,7 @@ struct input_thread_t
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 */
......
......@@ -4,7 +4,7 @@
* 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>
*
......@@ -103,7 +103,10 @@ input_thread_t *__input_CreateThread( vlc_object_t *p_parent,
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment