cue_tag: show CUE track numbers

This commit is contained in:
Qball Cow 2011-05-09 21:26:36 +02:00 committed by Max Kellermann
parent c6a72a14ac
commit 9ac8f89b1d
2 changed files with 10 additions and 0 deletions

1
NEWS
View File

@ -16,6 +16,7 @@ ver 0.17 (2011/??/??)
- shout: add possibility to set url
- roar: new output plugin for RoarAudio
* state_file: add option "restore_paused"
* cue: show CUE track numbers
ver 0.16.3 (2011/??/??)

View File

@ -178,6 +178,15 @@ cue_tag(struct Cd *cd, unsigned tnum)
if (tag == NULL)
return NULL;
/* Create a tag number */
tag_clear_items_by_type(tag, TAG_TRACK);
char convert_uinttostring[8];
snprintf(convert_uinttostring, sizeof(convert_uinttostring),
"%02d/%02d", tnum, cd_get_ntrack(cd));
tag_add_item(tag, TAG_TRACK, convert_uinttostring);
tag->time = track_get_length(track)
- track_get_index(track, 1)
+ track_get_zero_pre(track);