mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/mjpegdec: Fix chroma width rounding
Fixes vertical line at the right side Fixes Ticket 3929 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ceb2fe027f
commit
b96d864fd6
|
@ -2127,7 +2127,7 @@ the_end:
|
|||
if (!(s->upscale_v & (1<<p)))
|
||||
continue;
|
||||
if (p==1 || p==2)
|
||||
w >>= hshift;
|
||||
w = FF_CEIL_RSHIFT(w, hshift);
|
||||
for (i = s->height - 1; i; i--) {
|
||||
uint8_t *src1 = &((uint8_t *)s->picture_ptr->data[p])[i / 2 * s->linesize[p]];
|
||||
uint8_t *src2 = &((uint8_t *)s->picture_ptr->data[p])[(i + 1) / 2 * s->linesize[p]];
|
||||
|
|
Loading…
Reference in New Issue