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
2ad668f3
Commit
2ad668f3
authored
Dec 12, 2004
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Go over information that gets set, yet again. Disc things are no longer
playlist-item information.
parent
36ec573e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
125 additions
and
97 deletions
+125
-97
modules/access/cdda/access.c
modules/access/cdda/access.c
+1
-1
modules/access/cdda/info.c
modules/access/cdda/info.c
+120
-93
modules/access/cdda/info.h
modules/access/cdda/info.h
+4
-3
No files found.
modules/access/cdda/access.c
View file @
2ad668f3
...
@@ -580,7 +580,7 @@ static int CDDAControl( access_t *p_access, int i_query, va_list args )
...
@@ -580,7 +580,7 @@ static int CDDAControl( access_t *p_access, int i_query, va_list args )
}
else
{
}
else
{
snprintf
(
psz_mrl
,
psz_mrl_max
,
"%s%s"
,
snprintf
(
psz_mrl
,
psz_mrl_max
,
"%s%s"
,
CDDA_MRL_PREFIX
,
p_cdda
->
psz_source
);
CDDA_MRL_PREFIX
,
p_cdda
->
psz_source
);
CDDAMetaInfo
(
p_access
,
-
1
,
psz_mrl
);
CDDAMetaInfo
(
p_access
,
CDIO_INVALID_TRACK
,
psz_mrl
);
free
(
psz_mrl
);
free
(
psz_mrl
);
}
}
...
...
modules/access/cdda/info.c
View file @
2ad668f3
This diff is collapsed.
Click to expand it.
modules/access/cdda/info.h
View file @
2ad668f3
...
@@ -28,11 +28,12 @@ int CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda,
...
@@ -28,11 +28,12 @@ int CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda,
vlc_bool_t
b_single_track
);
vlc_bool_t
b_single_track
);
/*
/*
Gets and save
s CDDA Meta Information. In the Control routine,
Set
s CDDA Meta Information. In the Control routine,
we handle Meta Information requests and basically copy what we've
we handle Meta Information requests and basically copy what we've
saved here.
saved here.
*/
*/
void
CDDAMetaInfo
(
access_t
*
p_access
,
int
,
/*const*/
char
*
psz_mrl
);
void
CDDAMetaInfo
(
access_t
*
p_access
,
track_t
i_track
,
/*const*/
char
*
psz_mrl
);
/*
/*
Saves Meta Information about the CD-DA.
Saves Meta Information about the CD-DA.
...
@@ -40,7 +41,7 @@ void CDDAMetaInfo( access_t *p_access, int, /*const*/ char *psz_mrl );
...
@@ -40,7 +41,7 @@ void CDDAMetaInfo( access_t *p_access, int, /*const*/ char *psz_mrl );
Saves information that CDDAMetaInfo uses. Should be called before
Saves information that CDDAMetaInfo uses. Should be called before
CDDAMetaInfo is called.
CDDAMetaInfo is called.
*/
*/
void
CDDAMetaInfoInit
(
access_t
*
p_access
,
int
i_track
);
void
CDDAMetaInfoInit
(
access_t
*
p_access
);
/*
/*
...
...
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