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
64716237
Commit
64716237
authored
May 01, 2005
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compatability for different versions of libcdio from 0.71-0.74cvs
parent
ec5107fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
modules/access/cdda/access.c
modules/access/cdda/access.c
+3
-1
modules/access/cdda/cdda.c
modules/access/cdda/cdda.c
+2
-0
No files found.
modules/access/cdda/access.c
View file @
64716237
...
...
@@ -399,12 +399,12 @@ CDDARead( access_t * p_access, uint8_t *p_buffer, int i_len )
return
i_len
;
}
#if LIBCDIO_VERSION_NUM >= 73
/*! Pause CD playing via audio control */
static
bool
cdda_audio_pause
(
CdIo_t
*
p_cdio
)
{
bool
b_ok
=
true
;
#if LIBCDIO_VERSION_NUM >= 73
cdio_subchannel_t
sub
;
if
(
DRIVER_OP_SUCCESS
==
cdio_audio_read_subchannel
(
p_cdio
,
&
sub
))
{
if
(
sub
.
audio_status
==
CDIO_MMC_READ_SUB_ST_PLAY
)
{
...
...
@@ -412,9 +412,11 @@ cdda_audio_pause(CdIo_t *p_cdio)
}
}
else
b_ok
=
false
;
#endif
return
b_ok
;
}
#if LIBCDIO_VERSION_NUM >= 73
/*! play CD using audio controls */
static
driver_return_code_t
cdda_audio_play
(
CdIo_t
*
p_cdio
,
lsn_t
start_lsn
,
lsn_t
end_lsn
)
...
...
modules/access/cdda/cdda.c
View file @
64716237
...
...
@@ -37,9 +37,11 @@
* Option help text
*****************************************************************************/
#if LIBCDIO_VERSION_NUM >= 72
static
char
*
psz_paranoia_list
[]
=
{
"none"
,
"overlap"
,
"full"
};
static
char
*
psz_paranoia_list_text
[]
=
{
N_
(
"none"
),
N_
(
"overlap"
),
N_
(
"full"
)
};
#endif
#define DEBUG_LONGTEXT N_( \
"This integer when viewed in binary is a debugging mask\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