mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02: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;
|
return -1;
|
||||||
}
|
}
|
||||||
avctx->pix_fmt = AV_PIX_FMT_GBRP10;
|
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;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
if (!packing) {
|
if (!packing) {
|
||||||
|
Loading…
Reference in New Issue
Block a user