Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
7924faca
Commit
7924faca
authored
Aug 20, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cdda: Avoid a macro and kill a warning.
parent
d8dc5c85
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
modules/access/cdda/info.c
modules/access/cdda/info.c
+12
-12
No files found.
modules/access/cdda/info.c
View file @
7924faca
...
@@ -157,15 +157,15 @@ cddb_end: ;
...
@@ -157,15 +157,15 @@ cddb_end: ;
}
}
#endif
/*HAVE_LIBCDDB*/
#endif
/*HAVE_LIBCDDB*/
#define add_meta_val(VLC_META, VAL) \
static
inline
void
add_meta_val
(
access_t
*
p_access
,
vlc_meta_type_t
meta
,
const
char
*
val
)
if ( p_cdda->p_meta && VAL) { \
{
/*vlc_meta_Add( p_cdda->p_meta, VLC_META, VAL );*/
\
cdda_data_t
*
p_cdda
=
(
cdda_data_t
*
)
p_access
->
p_sys
;
dbg_print( INPUT_DBG_META, "field %s: %s\n", \
if
(
p_cdda
->
p_meta
&&
val
)
input_MetaTypeToLocalizedString(VLC_META), VAL ); \
dbg_print
(
INPUT_DBG_META
,
"field %s: %s
\n
"
,
input_MetaTypeToLocalizedString
(
meta
),
val
);
} \
}
#define add_cddb_meta(FIELD, VLC_META) \
#define add_cddb_meta(FIELD, VLC_META) \
add_meta_val(VLC_META, cddb_disc_get_##FIELD(p_cdda->cddb.disc));
add_meta_val(
p_access,
VLC_META, cddb_disc_get_##FIELD(p_cdda->cddb.disc));
#define add_cddb_meta_fmt(FIELD, FORMAT_SPEC, VLC_META) \
#define add_cddb_meta_fmt(FIELD, FORMAT_SPEC, VLC_META) \
{ \
{ \
...
@@ -173,7 +173,7 @@ cddb_end: ;
...
@@ -173,7 +173,7 @@ cddb_end: ;
snprintf( psz_buf, sizeof(psz_buf)-1, FORMAT_SPEC, \
snprintf( psz_buf, sizeof(psz_buf)-1, FORMAT_SPEC, \
cddb_disc_get_##FIELD(p_cdda->cddb.disc)); \
cddb_disc_get_##FIELD(p_cdda->cddb.disc)); \
psz_buf[sizeof(psz_buf)-1] = '\0'; \
psz_buf[sizeof(psz_buf)-1] = '\0'; \
add_meta_val(VLC_META, psz_buf); \
add_meta_val(
p_access,
VLC_META, psz_buf); \
}
}
/* Adds a string-valued entry to the stream and media information if
/* Adds a string-valued entry to the stream and media information if
...
@@ -302,11 +302,11 @@ CDDAMetaInfo( access_t *p_access, track_t i_track )
...
@@ -302,11 +302,11 @@ CDDAMetaInfo( access_t *p_access, track_t i_track )
{
{
if
(
cddb_track_get_title
(
t
)
!=
NULL
&&
!
p_cdda
->
b_nav_mode
)
if
(
cddb_track_get_title
(
t
)
!=
NULL
&&
!
p_cdda
->
b_nav_mode
)
{
{
add_meta_val
(
vlc_meta_Title
,
cddb_track_get_title
(
t
)
);
add_meta_val
(
p_access
,
vlc_meta_Title
,
cddb_track_get_title
(
t
)
);
}
}
if
(
cddb_track_get_artist
(
t
)
!=
NULL
)
if
(
cddb_track_get_artist
(
t
)
!=
NULL
)
{
{
add_meta_val
(
vlc_meta_Artist
,
cddb_track_get_artist
(
t
)
);
add_meta_val
(
p_access
,
vlc_meta_Artist
,
cddb_track_get_artist
(
t
)
);
}
}
}
}
}
}
...
@@ -452,14 +452,14 @@ CDDAMetaInfo( access_t *p_access, track_t i_track )
...
@@ -452,14 +452,14 @@ CDDAMetaInfo( access_t *p_access, track_t i_track )
{
{
char
*
psz_name
=
CDDAFormatTitle
(
p_access
,
i_track
)
;
char
*
psz_name
=
CDDAFormatTitle
(
p_access
,
i_track
)
;
if
(
!
p_cdda
->
b_nav_mode
)
{
if
(
!
p_cdda
->
b_nav_mode
)
{
add_meta_val
(
vlc_meta_Title
,
psz_name
);
add_meta_val
(
p_access
,
vlc_meta_Title
,
psz_name
);
}
else
}
else
{
{
input_Control
(
p_cdda
->
p_input
,
INPUT_SET_NAME
,
psz_name
);
input_Control
(
p_cdda
->
p_input
,
INPUT_SET_NAME
,
psz_name
);
free
(
psz_name
);
free
(
psz_name
);
}
}
if
(
psz_meta_artist
)
if
(
psz_meta_artist
)
add_meta_val
(
vlc_meta_Artist
,
psz_meta_artist
);
add_meta_val
(
p_access
,
vlc_meta_Artist
,
psz_meta_artist
);
}
}
}
}
}
}
...
...
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