diff options
author | Max Kellermann <max@duempel.org> | 2014-08-28 06:54:19 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-28 13:03:18 +0200 |
commit | 6ad933982f68f5fcbd1b3179bf5fed26f63aa792 (patch) | |
tree | f0aee7be7dd2caba5a795602bf519739ed6cefc0 /src/decoder | |
parent | 854258f37626d40271a821d4835e9cfb946c8ad8 (diff) |
DetachedSong: use std::chrono::duration for start_ms and end_ms
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/DecoderAPI.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/DecoderAPI.cxx b/src/decoder/DecoderAPI.cxx index 939434f83..83acb8a89 100644 --- a/src/decoder/DecoderAPI.cxx +++ b/src/decoder/DecoderAPI.cxx @@ -521,7 +521,7 @@ decoder_data(Decoder &decoder, const auto dest = chunk->Write(dc.out_audio_format, decoder.timestamp - - dc.song->GetStartMS() / 1000.0, + dc.song->GetStartTime().ToDoubleS(), kbit_rate); if (dest.IsNull()) { /* the chunk is full, flush it */ |