aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--src/playlist/cue_playlist_plugin.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index bf879898..f6569a04 100644
--- a/NEWS
+++ b/NEWS
@@ -77,6 +77,7 @@ ver 0.16 (20??/??/??)
* log: redirect stdout/stderr to /dev/null if syslog is used
* set the close-on-exec flag on all file descriptors
* pcm_volume, pcm_mix: implemented 32 bit support
+* CUE sheet support
* obey $(sysconfdir) for default mpd.conf location
* build with large file support by default
* require GLib 2.12
diff --git a/src/playlist/cue_playlist_plugin.c b/src/playlist/cue_playlist_plugin.c
index 27576520..a9b59656 100644
--- a/src/playlist/cue_playlist_plugin.c
+++ b/src/playlist/cue_playlist_plugin.c
@@ -102,6 +102,9 @@ cue_playlist_read(struct playlist_provider *_playlist)
song = song_remote_new(filename);
song->tag = tag;
+ song->start_ms = (track_get_start(track) * 1000) / 75;
+ song->end_ms = ((track_get_start(track) + track_get_length(track))
+ * 1000) / 75;
return song;
}