summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-11-25 14:29:32 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2023-04-21 01:55:13 +0200
commit1e6d77a4ce9772e6ffc876b2d9ce06806c78e363 (patch)
tree7e6f2f39c9ac719be680f313ccc90a435c0a5cd3
parentf952c536efda503ca8619510f45d2b9717ef0357 (diff)
downloadffmpeg-1e6d77a4ce9772e6ffc876b2d9ce06806c78e363.tar.gz
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@xvid.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 88f0e05c72f0de0cae3d9f0c5644f1965632b641) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/pictordec.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/pictordec.c b/libavcodec/pictordec.c
index 2e6fcdca52..31b25bbff5 100644
--- a/libavcodec/pictordec.c
+++ b/libavcodec/pictordec.c
@@ -231,8 +231,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);