[FFmpeg-cvslog] avcodec/h261dec: Discard whole packet when discarding
Andreas Rheinhardt
git at videolan.org
Wed Oct 11 23:37:57 EEST 2023
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sat Oct 7 02:28:16 2023 +0200| [b561dafd561cd8bff1f0ba89e49badf16654d0f2] | committer: Andreas Rheinhardt
avcodec/h261dec: Discard whole packet when discarding
(The return value doesn't really matter: For video decoders
every return value >= 0 is treated as "consumed all of the input".)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b561dafd561cd8bff1f0ba89e49badf16654d0f2
---
libavcodec/h261dec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c
index 2024bf6b19..e227c1785e 100644
--- a/libavcodec/h261dec.c
+++ b/libavcodec/h261dec.c
@@ -637,7 +637,7 @@ static int h261_decode_frame(AVCodecContext *avctx, AVFrame *pict,
if ((avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B) ||
(avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type != AV_PICTURE_TYPE_I) ||
avctx->skip_frame >= AVDISCARD_ALL)
- return get_consumed_bytes(s, buf_size);
+ return buf_size;
if (ff_mpv_frame_start(s, avctx) < 0)
return -1;
More information about the ffmpeg-cvslog
mailing list