mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
speexdec: remove dead code
fpp can never equal 0 here, or the loop would not execute at all. Zero fpp was possible before as the loop condition was allowing it specifically, but no more. Coverity 1139681
This commit is contained in:
parent
81d2e9333d
commit
74c93b8fc7
1 changed files with 1 additions and 7 deletions
|
@ -419,13 +419,7 @@ gst_speex_dec_parse_data (GstSpeexDec * dec, GstBuffer * buf)
|
|||
|
||||
if (ret == -1) {
|
||||
/* uh? end of stream */
|
||||
if (fpp == 0 && speex_bits_remaining (bits) < 8) {
|
||||
/* if we did not know how many frames to expect, then we get this
|
||||
at the end if there are leftover bits to pad to the next byte */
|
||||
GST_DEBUG_OBJECT (dec, "Discarding leftover bits");
|
||||
} else {
|
||||
GST_WARNING_OBJECT (dec, "Unexpected end of stream found");
|
||||
}
|
||||
GST_WARNING_OBJECT (dec, "Unexpected end of stream found");
|
||||
corrupted = TRUE;
|
||||
} else if (ret == -2) {
|
||||
GST_WARNING_OBJECT (dec, "Decoding error: corrupted stream?");
|
||||
|
|
Loading…
Reference in a new issue