mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avcodec/dnxhdenc: make sure that mb_height > 255 can be stored
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
3f1c527bf5
commit
34c2eea3d8
@ -582,7 +582,7 @@ static int dnxhd_write_header(AVCodecContext *avctx, uint8_t *buf)
|
||||
|
||||
buf[0x167] = 0x02; // reserved
|
||||
AV_WB16(buf + 0x16a, ctx->m.mb_height * 4 + 4); // MSIPS
|
||||
buf[0x16d] = ctx->m.mb_height; // Ns
|
||||
AV_WB16(buf + 0x16c, ctx->m.mb_height); // Ns
|
||||
buf[0x16f] = 0x10; // reserved
|
||||
|
||||
ctx->msip = buf + 0x170;
|
||||
|
Loading…
Reference in New Issue
Block a user