Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
832df23a
Commit
832df23a
authored
Jan 23, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HAVE_CDDAX is never defined (anymore)
parent
f9f69cb5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
15 deletions
+3
-15
modules/gui/ncurses.c
modules/gui/ncurses.c
+3
-9
src/libvlc-module.c
src/libvlc-module.c
+0
-6
No files found.
modules/gui/ncurses.c
View file @
832df23a
...
...
@@ -67,12 +67,6 @@
# include <dirent.h>
#endif
#ifdef HAVE_CDDAX
#define CDDA_MRL "cddax://"
#else
#define CDDA_MRL "cdda://"
#endif
#ifdef HAVE_VCDX
#define VCD_MRL "vcdx://"
#else
...
...
@@ -2425,9 +2419,9 @@ static void Eject( intf_thread_t *p_intf )
break
;
}
}
else
if
(
!
strncmp
(
psz_name
,
CDDA_MRL
,
strlen
(
CDDA_MRL
)
)
)
else
if
(
!
strncmp
(
psz_name
,
"cdda://"
,
7
)
)
{
switch
(
psz_name
[
strlen
(
CDDA_MRL
)
]
)
switch
(
psz_name
[
7
]
)
{
case
'\0'
:
case
'@'
:
...
...
@@ -2435,7 +2429,7 @@ static void Eject( intf_thread_t *p_intf )
break
;
default:
/* Omit the beginning MRL-selector characters */
psz_device
=
strdup
(
psz_name
+
strlen
(
CDDA_MRL
)
);
psz_device
=
strdup
(
psz_name
+
7
);
break
;
}
}
...
...
src/libvlc-module.c
View file @
832df23a
...
...
@@ -853,14 +853,8 @@ static const char *const ppsz_clock_descriptions[] =
#endif
#define CDAUDIO_DEV_TEXT N_("Audio CD device")
#ifdef HAVE_CDDAX
#define CDAUDIO_DEV_LONGTEXT N_( \
"This is the default Audio CD device to use. " \
"If you don't specify anything, we'll scan for a suitable CD-ROM device." )
#else
#define CDAUDIO_DEV_LONGTEXT N_( \
"This is the default Audio CD device to use." )
#endif
#define IPV6_TEXT N_("Force IPv6")
#define IPV6_LONGTEXT N_( \
...
...
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