This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new ee5d6e7ee1 avcodec/jpeglsdec: propagate error from
ff_jpegls_decode_picture()
ee5d6e7ee1 is described below
commit ee5d6e7ee1720b31846af0836b515071b66b3896
Author: Ramiro Polla <[email protected]>
AuthorDate: Wed Dec 10 23:52:16 2025 +0100
Commit: Ramiro Polla <[email protected]>
CommitDate: Thu Jan 1 23:57:08 2026 +0000
avcodec/jpeglsdec: propagate error from ff_jpegls_decode_picture()
Fixes fe7fbf3a227
---
libavcodec/jpeglsdec.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/libavcodec/jpeglsdec.c b/libavcodec/jpeglsdec.c
index 5f463c9660..6c4c6ad33c 100644
--- a/libavcodec/jpeglsdec.c
+++ b/libavcodec/jpeglsdec.c
@@ -432,7 +432,6 @@ int ff_jpegls_decode_picture(MJpegDecodeContext *s, int
near,
width = s->width * stride;
cur += off;
for (i = 0; i < s->height; i++) {
- int ret;
if (s->bits <= 8) {
ret = ls_decode_line(state, s, last, cur, t, width, stride,
off, 8);
t = last[0];
@@ -458,7 +457,6 @@ int ff_jpegls_decode_picture(MJpegDecodeContext *s, int
near,
memset(cur, 0, s->picture_ptr->linesize[0]);
width = s->width * stride;
for (i = 0; i < s->height; i++) {
- int ret;
for (j = 0; j < stride; j++) {
ret = ls_decode_line(state, s, last + j, cur + j,
Rc[j], width, stride, j, 8);
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]