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
79095d58
Commit
79095d58
authored
Mar 06, 2002
by
Stéphane Borel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
I hope you liked this bug: DVD demux was always used.
parent
54d2ed59
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
12 deletions
+9
-12
plugins/dvd/dvd.c
plugins/dvd/dvd.c
+2
-2
plugins/dvdread/dvdread.c
plugins/dvdread/dvdread.c
+2
-2
plugins/dvdread/input_dvdread.c
plugins/dvdread/input_dvdread.c
+3
-6
plugins/vcd/vcd.c
plugins/vcd/vcd.c
+2
-2
No files found.
plugins/dvd/dvd.c
View file @
79095d58
...
...
@@ -2,7 +2,7 @@
* dvd.c : DVD input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: dvd.c,v 1.2
5 2002/03/05 18:17:52
stef Exp $
* $Id: dvd.c,v 1.2
6 2002/03/06 16:39:36
stef Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -57,7 +57,7 @@ ADD_CATEGORY_HINT( "[dvd:][device][@raw_device][@[title][,[chapter][,angle]]]",
MODULE_CONFIG_STOP
MODULE_INIT_START
ADD_CAPABILITY
(
DEMUX
,
20
0
)
ADD_CAPABILITY
(
DEMUX
,
0
)
#ifndef WIN32
# ifdef GOD_DAMN_DMCA
SET_DESCRIPTION
(
"DVD input module, uses libdvdcss if present"
)
...
...
plugins/dvdread/dvdread.c
View file @
79095d58
...
...
@@ -2,7 +2,7 @@
* dvdread.c : DvdRead input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: dvdread.c,v 1.1
2 2002/03/04 01:53:56
stef Exp $
* $Id: dvdread.c,v 1.1
3 2002/03/06 16:39:37
stef Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -44,7 +44,7 @@ MODULE_CONFIG_STOP
MODULE_INIT_START
SET_DESCRIPTION
(
"DVDRead input module"
)
ADD_CAPABILITY
(
DEMUX
,
21
0
)
ADD_CAPABILITY
(
DEMUX
,
0
)
ADD_CAPABILITY
(
ACCESS
,
110
)
ADD_SHORTCUT
(
"dvdread"
)
MODULE_INIT_STOP
...
...
plugins/dvdread/input_dvdread.c
View file @
79095d58
...
...
@@ -6,7 +6,7 @@
* It depends on: libdvdread for ifo files and block reading.
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: input_dvdread.c,v 1.3
0 2002/03/06 01:20:56
stef Exp $
* $Id: input_dvdread.c,v 1.3
1 2002/03/06 16:39:37
stef Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
*
...
...
@@ -131,11 +131,6 @@ void _M( demux_getfunctions )( function_list_t * p_function_list )
*****************************************************************************/
static
int
DvdReadInit
(
input_thread_t
*
p_input
)
{
if
(
strncmp
(
p_input
->
p_access_module
->
psz_name
,
"dvdread"
,
7
)
)
{
return
-
1
;
}
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
DvdReadLauchDecoders
(
p_input
);
...
...
@@ -415,6 +410,8 @@ static int DvdReadOpen( struct input_thread_s *p_input )
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
p_input
->
psz_demux
=
"dvdread"
;
return
0
;
}
...
...
plugins/vcd/vcd.c
View file @
79095d58
...
...
@@ -2,7 +2,7 @@
* vcd.c : VCD input module for vlc
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: vcd.c,v 1.
7 2002/03/06 01:20:56
stef Exp $
* $Id: vcd.c,v 1.
8 2002/03/06 16:39:37
stef Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -43,7 +43,7 @@ MODULE_CONFIG_STOP
MODULE_INIT_START
SET_DESCRIPTION
(
"VCD input module"
)
ADD_CAPABILITY
(
DEMUX
,
18
0
)
ADD_CAPABILITY
(
DEMUX
,
0
)
ADD_CAPABILITY
(
ACCESS
,
80
)
ADD_SHORTCUT
(
"vcd"
)
MODULE_INIT_STOP
...
...
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