You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
dpxenc: fix padding in encode_gbrp12
It was added per pixel instead of per line. Reviewed-by: James Darnley <james.darnley@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
0625a38066
commit
b3d6543caf
@ -159,11 +159,11 @@ static void encode_gbrp12(AVCodecContext *avctx, const AVPicture *pic, uint16_t
|
||||
value[2] = AV_RL16(src[1] + x) << 4;
|
||||
value[0] = AV_RL16(src[2] + x) << 4;
|
||||
}
|
||||
for (i = 0; i < pad; i++)
|
||||
*dst++ = 0;
|
||||
for (i = 0; i < 3; i++)
|
||||
write16(dst++, value[i]);
|
||||
}
|
||||
for (i = 0; i < pad; i++)
|
||||
*dst++ = 0;
|
||||
for (i = 0; i < 3; i++)
|
||||
src[i] += pic->linesize[i]/2;
|
||||
}
|
||||
|
Reference in New Issue
Block a user