Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
599a5621
Commit
599a5621
authored
Jan 03, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cue_parser: add code comments
parent
d29a2515
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
cue_parser.c
src/cue/cue_parser.c
+21
-2
No files found.
src/cue/cue_parser.c
View file @
599a5621
...
...
@@ -58,8 +58,27 @@ struct cue_parser {
char
*
filename
;
struct
song
*
current
,
*
previous
,
*
finished
;
/**
* The song currently being edited.
*/
struct
song
*
current
;
/**
* The previous song. It is remembered because its end_time
* will be set to the current song's start time.
*/
struct
song
*
previous
;
/**
* A song that is completely finished and can be returned to
* the caller via cue_parser_get().
*/
struct
song
*
finished
;
/**
* Set to true after previous.end_time has been updated to the
* start time of the current song.
*/
bool
last_updated
;
};
...
...
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