mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/jpeg2000dec: Fix shift for RGB(A)48/64
Found-by: carl Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
913685f552
commit
213f2da46a
@ -1331,6 +1331,8 @@ static int jpeg2000_decode_tile(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
|
||||
}
|
||||
} else {
|
||||
int precision = picture->format == AV_PIX_FMT_XYZ12 ||
|
||||
picture->format == AV_PIX_FMT_RGB48 ||
|
||||
picture->format == AV_PIX_FMT_RGBA64 ||
|
||||
picture->format == AV_PIX_FMT_GRAY16 ? 16 : s->precision;
|
||||
|
||||
for (compno = 0; compno < s->ncomponents; compno++) {
|
||||
|
Loading…
Reference in New Issue
Block a user