summaryrefslogtreecommitdiff
path: root/src/decoder/DecoderAPI.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-08-29 20:52:39 +0200
committerMax Kellermann <max@duempel.org>2014-08-29 21:40:15 +0200
commitd9d97bd17bf0d9469dcf00120d3d3fdab87299bc (patch)
treed7abd9d0cbc6e417aaf4427740bf47207f47d7fa /src/decoder/DecoderAPI.cxx
parent94f6380d693b8bece655885d37495a3a73c78b62 (diff)
DecoderAPI: pass SignedSongTime to decoder_initialized()
Diffstat (limited to 'src/decoder/DecoderAPI.cxx')
-rw-r--r--src/decoder/DecoderAPI.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/decoder/DecoderAPI.cxx b/src/decoder/DecoderAPI.cxx
index 354fed9a3..3d45cb325 100644
--- a/src/decoder/DecoderAPI.cxx
+++ b/src/decoder/DecoderAPI.cxx
@@ -41,7 +41,7 @@
void
decoder_initialized(Decoder &decoder,
const AudioFormat audio_format,
- bool seekable, float total_time)
+ bool seekable, SignedSongTime duration)
{
DecoderControl &dc = decoder.dc;
struct audio_format_string af_string;
@@ -59,9 +59,7 @@ decoder_initialized(Decoder &decoder,
dc.out_audio_format = getOutputAudioFormat(audio_format);
dc.seekable = seekable;
- dc.total_time = total_time > 0
- ? SignedSongTime::FromS(total_time)
- : SignedSongTime::Negative();
+ dc.total_time = duration;
FormatDebug(decoder_domain, "audio_format=%s, seekable=%s",
audio_format_to_string(dc.in_audio_format, &af_string),