Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
ed8d7b24
Commit
ed8d7b24
authored
Aug 02, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* 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
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
include/input_ext-intf.h
include/input_ext-intf.h
+2
-1
src/input/input.c
src/input/input.c
+5
-2
No files found.
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/07/27 14:10:02 massiot
Exp $
* $Id: input_ext-intf.h,v 1.9
3 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 */
...
...
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/07/23 22:01:25 gbazin
Exp $
* $Id: input.c,v 1.23
6 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
;
...
...
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