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
79095d58
Commit
79095d58
authored
Mar 06, 2002
by
Stéphane Borel
Browse files
I hope you liked this bug: DVD demux was always used.
parent
54d2ed59
Changes
4
Hide whitespace changes
Inline
Side-by-side
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/0
5
1
8:17:52
stef Exp $
* $Id: dvd.c,v 1.2
6
2002/03/0
6
1
6: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/0
4 01:53:56
stef Exp $
* $Id: dvdread.c,v 1.1
3
2002/03/0
6 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
Supports
Markdown
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