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
859d9e31
Commit
859d9e31
authored
Oct 10, 2004
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compilation fix when libcddb is not available.
parent
24b06102
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
modules/access/cdda/info.c
modules/access/cdda/info.c
+10
-10
No files found.
modules/access/cdda/info.c
View file @
859d9e31
...
@@ -456,7 +456,16 @@ CDDAFormatStr( const access_t *p_access, cdda_data_t *p_cdda,
...
@@ -456,7 +456,16 @@ CDDAFormatStr( const access_t *p_access, cdda_data_t *p_cdda,
add_format_str_info
(
t
->
ext_data
);
add_format_str_info
(
t
->
ext_data
);
}
else
goto
not_special
;
}
else
goto
not_special
;
break
;
break
;
#endif
case
's'
:
if
(
p_cdda
->
b_cddb_enabled
)
{
char
psz_buffer
[
MSTRTIME_MAX_SIZE
];
mtime_t
i_duration
=
(
p_cdda
->
lsn
[
i_track
+
1
]
-
p_cdda
->
lsn
[
i_track
])
/
CDIO_CD_FRAMES_PER_SEC
;
add_format_str_info
(
secstotimestr
(
psz_buffer
,
i_duration
)
);
}
else
goto
not_special
;
break
;
#endif
/*HAVE_LIBCDDB*/
case
'M'
:
case
'M'
:
add_format_str_info
(
mrl
);
add_format_str_info
(
mrl
);
...
@@ -470,15 +479,6 @@ CDDAFormatStr( const access_t *p_access, cdda_data_t *p_cdda,
...
@@ -470,15 +479,6 @@ CDDAFormatStr( const access_t *p_access, cdda_data_t *p_cdda,
add_format_num_info
(
p_cdda
->
i_tracks
,
"%d"
);
add_format_num_info
(
p_cdda
->
i_tracks
,
"%d"
);
break
;
break
;
case
's'
:
if
(
p_cdda
->
b_cddb_enabled
)
{
char
psz_buffer
[
MSTRTIME_MAX_SIZE
];
mtime_t
i_duration
=
(
p_cdda
->
lsn
[
i_track
+
1
]
-
p_cdda
->
lsn
[
i_track
])
/
CDIO_CD_FRAMES_PER_SEC
;
add_format_str_info
(
secstotimestr
(
psz_buffer
,
i_duration
)
);
}
else
goto
not_special
;
break
;
case
'T'
:
case
'T'
:
add_format_num_info
(
i_track
,
"%02d"
);
add_format_num_info
(
i_track
,
"%02d"
);
break
;
break
;
...
...
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