Commit 50c0c4b7 authored by Orivej Desh's avatar Orivej Desh Committed by Max Kellermann

cue: fix code style

parent 8446b70d
...@@ -181,7 +181,7 @@ cue_tag(struct Cd *cd, unsigned tnum) ...@@ -181,7 +181,7 @@ cue_tag(struct Cd *cd, unsigned tnum)
tag->time = track_get_length(track) tag->time = track_get_length(track)
- track_get_index(track, 1) - track_get_index(track, 1)
+ track_get_zero_pre(track); + track_get_zero_pre(track);
track = cd_get_track(cd, tnum+1); track = cd_get_track(cd, tnum + 1);
if (track != NULL) if (track != NULL)
tag->time += track_get_index(track, 1) tag->time += track_get_index(track, 1)
- track_get_zero_pre(track); - track_get_zero_pre(track);
......
...@@ -107,8 +107,7 @@ cue_playlist_read(struct playlist_provider *_playlist) ...@@ -107,8 +107,7 @@ cue_playlist_read(struct playlist_provider *_playlist)
- track_get_zero_pre(track)) * 1000) / 75; - track_get_zero_pre(track)) * 1000) / 75;
song->end_ms = ((track_get_start(track) + track_get_length(track) song->end_ms = ((track_get_start(track) + track_get_length(track)
- track_get_index(track, 1) - track_get_index(track, 1)
+ track_get_zero_pre(track)) + track_get_zero_pre(track)) * 1000) / 75;
* 1000) / 75;
/* append pregap of the next track to the end of this one */ /* append pregap of the next track to the end of this one */
track = cd_get_track(playlist->cd, playlist->next); track = cd_get_track(playlist->cd, playlist->next);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment