Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
ed8d7b24
Commit
ed8d7b24
authored
Aug 02, 2003
by
Laurent Aimar
Browse files
* all: added a pf_demux_control member to input_thread_t. It is currently
unused.
parent
da866289
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/input_ext-intf.h
View file @
ed8d7b24
...
...
@@ -4,7 +4,7 @@
* control the pace of reading.
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: input_ext-intf.h,v 1.9
2
2003/0
7/27 14:10:02 massiot
Exp $
* $Id: input_ext-intf.h,v 1.9
3
2003/0
8/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 */
...
...
src/input/input.c
View file @
ed8d7b24
...
...
@@ -4,7 +4,7 @@
* decoders.
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: input.c,v 1.23
5
2003/0
7/23 22:01:25 gbazin
Exp $
* $Id: input.c,v 1.23
6
2003/0
8/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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment