You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
avcodec/mjpegdec: fix rgb ljpeg prediction 5/6/7 with point_transform
untested due to lack of sample Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -790,7 +790,7 @@ static int ljpeg_decode_rgb_scan(MJpegDecodeContext *s, int nb_components, int p
|
|||||||
uint16_t (*buffer)[4];
|
uint16_t (*buffer)[4];
|
||||||
int left[4], top[4], topleft[4];
|
int left[4], top[4], topleft[4];
|
||||||
const int linesize = s->linesize[0];
|
const int linesize = s->linesize[0];
|
||||||
const int mask = (1 << s->bits) - 1;
|
const int mask = ((1 << s->bits) - 1) << point_transform;
|
||||||
int resync_mb_y = 0;
|
int resync_mb_y = 0;
|
||||||
int resync_mb_x = 0;
|
int resync_mb_x = 0;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user