mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 14:01:27 +00:00
dpx: Fix rounding in 10bit total_size calculation
This could have caused out of array reads Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d24de4596c
commit
151067bbc2
@ -159,7 +159,7 @@ static int decode_frame(AVCodecContext *avctx,
|
||||
return -1;
|
||||
}
|
||||
avctx->pix_fmt = AV_PIX_FMT_GBRP10;
|
||||
total_size = (4 * avctx->width * avctx->height * elements) / 3;
|
||||
total_size = (avctx->width * avctx->height * elements + 2) / 3 * 4;
|
||||
break;
|
||||
case 12:
|
||||
if (!packing) {
|
||||
|
Loading…
Reference in New Issue
Block a user