Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8e8dada2
Commit
8e8dada2
authored
Sep 07, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all : set pf_demux_control.
parent
091aff73
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
7 deletions
+14
-7
modules/access/cdda.c
modules/access/cdda.c
+2
-1
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+2
-1
modules/access/dvd/demux.c
modules/access/dvd/demux.c
+2
-1
modules/access/dvdplay/demux.c
modules/access/dvdplay/demux.c
+2
-1
modules/access/dvdread/input.c
modules/access/dvdread/input.c
+2
-1
modules/access/slp.c
modules/access/slp.c
+2
-1
modules/access/v4l/v4l.c
modules/access/v4l/v4l.c
+2
-1
No files found.
modules/access/cdda.c
View file @
8e8dada2
...
...
@@ -2,7 +2,7 @@
* cdda.c : CD digital audio input module for vlc
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: cdda.c,v 1.
5 2003/06/17 20:03:50 hartman
Exp $
* $Id: cdda.c,v 1.
6 2003/09/07 22:49:05 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -401,6 +401,7 @@ static int CDDAOpenDemux ( vlc_object_t * p_this)
p_demux
->
p_es
=
NULL
;
p_input
->
pf_demux
=
CDDADemux
;
p_input
->
pf_demux_control
=
demux_vaControlDefault
;
p_input
->
pf_rewind
=
NULL
;
p_input
->
p_demux_data
=
p_demux
;
...
...
modules/access/dshow/dshow.cpp
View file @
8e8dada2
...
...
@@ -2,7 +2,7 @@
* dshow.c : DirectShow access module for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: dshow.cpp,v 1.
7 2003/08/31 22:06:17 gbazin
Exp $
* $Id: dshow.cpp,v 1.
8 2003/09/07 22:49:05 fenrir
Exp $
*
* Author: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -1123,6 +1123,7 @@ static int DemuxOpen( vlc_object_t *p_this )
}
p_input
->
pf_demux
=
Demux
;
p_input
->
pf_demux_control
=
demux_vaControlDefault
;
return
VLC_SUCCESS
;
}
...
...
modules/access/dvd/demux.c
View file @
8e8dada2
/* demux.c: DVD demux functions.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: demux.c,v 1.
2 2002/08/07 00:29:36 sam
Exp $
* $Id: demux.c,v 1.
3 2003/09/07 22:49:05 fenrir
Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
*
...
...
@@ -93,6 +93,7 @@ int E_(DVDInit) ( vlc_object_t *p_this )
}
p_input
->
pf_demux
=
DVDDemux
;
p_input
->
pf_demux_control
=
demux_vaControlDefault
;
p_input
->
pf_rewind
=
NULL
;
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
...
...
modules/access/dvdplay/demux.c
View file @
8e8dada2
...
...
@@ -2,7 +2,7 @@
* demux.c: demux functions for dvdplay.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: demux.c,v 1.
6 2003/02/07 00:29:53 sam
Exp $
* $Id: demux.c,v 1.
7 2003/09/07 22:49:05 fenrir
Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
*
...
...
@@ -102,6 +102,7 @@ int E_(InitDVD) ( vlc_object_t *p_this )
p_input
->
p_demux_data
->
p_dvd
=
p_dvd
;
p_input
->
pf_demux
=
Demux
;
p_input
->
pf_demux_control
=
demux_vaControlDefault
;
p_input
->
pf_rewind
=
NULL
;
p_dvd
->
p_intf
=
intf_Create
(
p_input
,
"dvdplay"
);
...
...
modules/access/dvdread/input.c
View file @
8e8dada2
...
...
@@ -6,7 +6,7 @@
* It depends on: libdvdread for ifo files and block reading.
*****************************************************************************
* Copyright (C) 2001, 2003 VideoLAN
* $Id: input.c,v 1.2
2 2003/05/08 19:06:44 tite
r Exp $
* $Id: input.c,v 1.2
3 2003/09/07 22:49:05 fenri
r Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
*
...
...
@@ -129,6 +129,7 @@ int E_(InitDVD) ( vlc_object_t *p_this )
}
p_input
->
pf_demux
=
DvdReadDemux
;
p_input
->
pf_demux_control
=
demux_vaControlDefault
;
p_input
->
pf_rewind
=
NULL
;
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
...
...
modules/access/slp.c
View file @
8e8dada2
...
...
@@ -2,7 +2,7 @@
* slp.c: SLP access plugin
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: slp.c,v 1.1
4 2003/08/10 12:45:52 zorglub
Exp $
* $Id: slp.c,v 1.1
5 2003/09/07 22:49:05 fenrir
Exp $
*
* Authors: Loc Minier <lool@videolan.org>
*
...
...
@@ -415,6 +415,7 @@ static int Init ( vlc_object_t *p_this )
}
p_input
->
pf_demux
=
Demux
;
p_input
->
pf_demux_control
=
demux_vaControlDefault
;
p_input
->
pf_rewind
=
NULL
;
return
VLC_SUCCESS
;
...
...
modules/access/v4l/v4l.c
View file @
8e8dada2
...
...
@@ -2,7 +2,7 @@
* v4l.c : Video4Linux input module for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: v4l.c,v 1.2
3 2003/08/30 11:59:44 gbazin
Exp $
* $Id: v4l.c,v 1.2
4 2003/09/07 22:49:05 fenrir
Exp $
*
* Author: Laurent Aimar <fenrir@via.ecp.fr>
* Paul Forgey <paulf at aphrodite dot com>
...
...
@@ -1399,6 +1399,7 @@ static int DemuxOpen( vlc_object_t *p_this )
}
p_input
->
pf_demux
=
Demux
;
p_input
->
pf_demux_control
=
demux_vaControlDefault
;
return
VLC_SUCCESS
;
}
...
...
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