Commit 192050d7 authored by Michael Niedermayer's avatar Michael Niedermayer

jpeg2000dec: merge sgnd fix from j2k

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5dbbb762
......@@ -185,7 +185,7 @@ static int get_siz(Jpeg2000DecoderContext *s)
uint8_t x = bytestream2_get_byteu(&s->g);
s->cbps[i] = (x & 0x7f) + 1;
s->precision = FFMAX(s->cbps[i], s->precision);
s->sgnd[i] = (x & 0x80) == 1;
s->sgnd[i] = !!(x & 0x80);
s->cdx[i] = bytestream2_get_byteu(&s->g);
s->cdy[i] = bytestream2_get_byteu(&s->g);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment