diff options
Diffstat (limited to 'src/decoder/plugins/FaadDecoderPlugin.cxx')
-rw-r--r-- | src/decoder/plugins/FaadDecoderPlugin.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/decoder/plugins/FaadDecoderPlugin.cxx b/src/decoder/plugins/FaadDecoderPlugin.cxx index 5b352c9f4..d59309a3a 100644 --- a/src/decoder/plugins/FaadDecoderPlugin.cxx +++ b/src/decoder/plugins/FaadDecoderPlugin.cxx @@ -438,11 +438,9 @@ faad_scan_stream(InputStream &is, if (!result.first) return false; - unsigned duration = result.second.IsNegative() - ? 0 - : result.second.RoundS(); - - tag_handler_invoke_duration(handler, handler_ctx, duration); + if (!result.second.IsNegative()) + tag_handler_invoke_duration(handler, handler_ctx, + SongTime(result.second)); return true; } |