[FFmpeg-cvslog] avcodec/pictordec: Remove mid exit branch
Michael Niedermayer
git at videolan.org
Tue Mar 28 00:15:00 EEST 2023
ffmpeg | branch: release/5.0 | Michael Niedermayer <michael at niedermayer.cc> | Fri Nov 25 14:29:32 2022 +0100| [123181bca4df491153e2aba38db2f213ac6bde98] | committer: Michael Niedermayer
avcodec/pictordec: Remove mid exit branch
This causes the RLE decoder to exit before applying the last RLE run
All images i tested with are unchanged, this makes the special case
for handling the last run unused for non truncated images.
Reviewed-by: Peter Ross <pross at xvid.org>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 88f0e05c72f0de0cae3d9f0c5644f1965632b641)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=123181bca4df491153e2aba38db2f213ac6bde98
---
libavcodec/pictordec.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/libavcodec/pictordec.c b/libavcodec/pictordec.c
index c7b3a335d3..d9ce914363 100644
--- a/libavcodec/pictordec.c
+++ b/libavcodec/pictordec.c
@@ -244,8 +244,6 @@ static int decode_frame(AVCodecContext *avctx,
run = bytestream2_get_le16(&s->g);
val = bytestream2_get_byte(&s->g);
}
- if (!bytestream2_get_bytes_left(&s->g))
- break;
if (bits_per_plane == 8) {
picmemset_8bpp(s, frame, val, run, &x, &y);
More information about the ffmpeg-cvslog
mailing list