Commit 0916938a authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/jpeg2000dec: Fix gain regression with gray16

Found-by: carl
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6bf8d9e1
......@@ -1330,7 +1330,8 @@ static int jpeg2000_decode_tile(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
}
}
} else {
int precision = picture->format == AV_PIX_FMT_XYZ12 ? 16 : s->precision;
int precision = picture->format == AV_PIX_FMT_XYZ12 ||
picture->format == AV_PIX_FMT_GRAY16 ? 16 : s->precision;
for (compno = 0; compno < s->ncomponents; compno++) {
Jpeg2000Component *comp = tile->comp + compno;
......
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