From 43a1a0f3abaa553fcff0c38986205ed717863c2a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 19 Aug 2014 20:38:59 +0200 Subject: 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. --- src/decoder/plugins/FaadDecoderPlugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder/plugins/FaadDecoderPlugin.cxx b/src/decoder/plugins/FaadDecoderPlugin.cxx index 21351f2ba..85bb69ad9 100644 --- a/src/decoder/plugins/FaadDecoderPlugin.cxx +++ b/src/decoder/plugins/FaadDecoderPlugin.cxx @@ -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; -- cgit v1.2.3