diff options
-rw-r--r-- | src/decoder/plugins/DsfDecoderPlugin.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/decoder/plugins/DsfDecoderPlugin.cxx b/src/decoder/plugins/DsfDecoderPlugin.cxx index 0f0739e37..c0b0871cf 100644 --- a/src/decoder/plugins/DsfDecoderPlugin.cxx +++ b/src/decoder/plugins/DsfDecoderPlugin.cxx @@ -313,11 +313,10 @@ dsf_stream_decode(Decoder &decoder, InputStream &is) /* success: file was recognized */ decoder_initialized(decoder, audio_format, false, songtime); - if (!dsf_decode_chunk(decoder, is, metadata.channels, - metadata.sample_rate, - n_blocks, - metadata.bitreverse)) - return; + dsf_decode_chunk(decoder, is, metadata.channels, + metadata.sample_rate, + n_blocks, + metadata.bitreverse); } static bool |