Commit cd0082c6 authored by Max Kellermann's avatar Max Kellermann

decoder/dsf: eliminate pointless return statement

parent f78527d1
...@@ -313,11 +313,10 @@ dsf_stream_decode(Decoder &decoder, InputStream &is) ...@@ -313,11 +313,10 @@ dsf_stream_decode(Decoder &decoder, InputStream &is)
/* success: file was recognized */ /* success: file was recognized */
decoder_initialized(decoder, audio_format, false, songtime); decoder_initialized(decoder, audio_format, false, songtime);
if (!dsf_decode_chunk(decoder, is, metadata.channels, dsf_decode_chunk(decoder, is, metadata.channels,
metadata.sample_rate, metadata.sample_rate,
n_blocks, n_blocks,
metadata.bitreverse)) metadata.bitreverse);
return;
} }
static bool static bool
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment