Skip to content
Snippets Groups Projects
Commit 15b219fa authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

jpegdec: Fix vlc table check for progressive jpegs.


Fixes Ticket834

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 6072a19b
No related branches found
No related tags found
No related merge requests found
...@@ -1073,7 +1073,7 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s, ...@@ -1073,7 +1073,7 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s,
if (s->dc_index[i] < 0 || s->ac_index[i] < 0 || if (s->dc_index[i] < 0 || s->ac_index[i] < 0 ||
s->dc_index[i] >= 4 || s->ac_index[i] >= 4) s->dc_index[i] >= 4 || s->ac_index[i] >= 4)
goto out_of_range; goto out_of_range;
if (!s->vlcs[0][s->dc_index[i]].table || !s->vlcs[1][s->ac_index[i]].table) if (!s->vlcs[0][s->dc_index[i]].table || !(s->progressive ? s->vlcs[2][s->ac_index[0]].table : s->vlcs[1][s->ac_index[i]].table))
goto out_of_range; goto out_of_range;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment