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
1e105908
Commit
1e105908
authored
Mar 04, 2002
by
Stéphane Borel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-DVD access plugin is only called if specified under windows (no automatic detection)
parent
47ab9185
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
plugins/dvd/dvd.c
plugins/dvd/dvd.c
+8
-3
No files found.
plugins/dvd/dvd.c
View file @
1e105908
...
...
@@ -2,7 +2,7 @@
* dvd.c : DVD input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: dvd.c,v 1.2
3 2002/03/04 01:53:56
stef Exp $
* $Id: dvd.c,v 1.2
4 2002/03/04 03:44:17
stef Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -57,14 +57,19 @@ ADD_CATEGORY_HINT( "[dvd:][device][@raw_device][@[title][,[chapter][,angle]]]",
MODULE_CONFIG_STOP
MODULE_INIT_START
#ifdef GOD_DAMN_DMCA
#ifndef WIN32
# ifdef GOD_DAMN_DMCA
SET_DESCRIPTION
(
"DVD input module, uses libdvdcss if present"
)
ADD_CAPABILITY
(
DEMUX
,
190
)
ADD_CAPABILITY
(
ACCESS
,
90
)
#else
#
else
SET_DESCRIPTION
(
"DVD input module, linked with libdvdcss"
)
ADD_CAPABILITY
(
DEMUX
,
200
)
ADD_CAPABILITY
(
ACCESS
,
100
)
# endif
#else
ADD_CAPABILITY
(
DEMUX
,
0
)
ADD_CAPABILITY
(
ACCESS
,
0
)
#endif
ADD_SHORTCUT
(
"dvd"
)
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