decoder/faad: remove size!=0 check

Since we already checked InputStream::KnownSize(), we can assume that
GetSize() returns a valid value, and this check is obsolete.
This commit is contained in:
Max Kellermann 2014-08-19 20:38:59 +02:00
parent e88524f274
commit 43a1a0f3ab

View File

@ -220,7 +220,7 @@ faad_song_duration(DecoderBuffer *buffer, InputStream &is)
const auto size = is.GetSize();
const size_t fileread = size >= 0 ? size : 0;
if (fileread != 0 && bit_rate != 0)
if (bit_rate != 0)
return fileread * 8.0 / bit_rate;
else
return fileread;