mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
libspeexdec: fix detection of final terminator code
This commit is contained in:
parent
7ef760d95c
commit
8000206abc
@ -127,7 +127,7 @@ static int libspeex_decode_frame(AVCodecContext *avctx, void *data,
|
||||
current packet, otherwise ignore the current packet and keep decoding
|
||||
frames from the libspeex buffer. */
|
||||
if (speex_bits_remaining(&s->bits) < 5 ||
|
||||
speex_bits_peek_unsigned(&s->bits, 5) == 0x1F) {
|
||||
speex_bits_peek_unsigned(&s->bits, 5) == 0xF) {
|
||||
/* check for flush packet */
|
||||
if (!buf || !buf_size) {
|
||||
*got_frame_ptr = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user