decoder/dsf: eliminate pointless return statement

This commit is contained in:
Max Kellermann 2014-08-23 13:54:07 +02:00
parent f78527d1e3
commit cd0082c630
1 changed files with 4 additions and 5 deletions

View File

@ -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