From 430b5b049091a432946ca3a3242f7b79ac7a3cdf Mon Sep 17 00:00:00 2001 From: Mike Dawson Date: Sun, 30 Aug 2009 19:49:16 +0200 Subject: decoder/sidplay: support seeking --- src/decoder/sidplay_plugin.cxx | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) (limited to 'src/decoder/sidplay_plugin.cxx') diff --git a/src/decoder/sidplay_plugin.cxx b/src/decoder/sidplay_plugin.cxx index f490586ac..5228dbe89 100644 --- a/src/decoder/sidplay_plugin.cxx +++ b/src/decoder/sidplay_plugin.cxx @@ -198,6 +198,9 @@ sidplay_file_decode(struct decoder *decoder, const char *path_fs) int song_num=get_song_num(path_fs); tune.selectSong(song_num); + int song_len=get_song_length(path_fs); + if(song_len==-1) song_len=default_songlength; + /* initialize the player */ sidplay2 player; @@ -259,10 +262,12 @@ sidplay_file_decode(struct decoder *decoder, const char *path_fs) struct audio_format audio_format; audio_format_init(&audio_format, 48000, 16, 2); - decoder_initialized(decoder, &audio_format, false, -1); + decoder_initialized(decoder, &audio_format, true, (float)song_len); /* .. and play */ + float data_time=0; + int timebase=player.timebase(); enum decoder_command cmd; do { char buffer[4096]; @@ -273,8 +278,34 @@ sidplay_file_decode(struct decoder *decoder, const char *path_fs) break; cmd = decoder_data(decoder, NULL, buffer, nbytes, - 0, 0, NULL); - } while (cmd == DECODE_COMMAND_NONE); + data_time, 0, NULL); + + data_time=player.time()/timebase; + + if(cmd==DECODE_COMMAND_SEEK) { + int target_time=decoder_seek_where(decoder); + + /* can't rewind so return to zero and seek forward */ + if(target_time=(float)song_len) + break; + + } while (cmd != DECODE_COMMAND_STOP); } static struct tag * -- cgit v1.2.3