1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avformat/mov: stop using deprecated codec flags

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2017-03-25 21:36:10 -03:00
parent 963cd953fb
commit d054069c15

View File

@ -873,7 +873,7 @@ static int mov_read_ddts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
uint32_t channel_layout_code = 0;
GetBitContext gb;
buf = av_malloc(ddts_size + FF_INPUT_BUFFER_PADDING_SIZE);
buf = av_malloc(ddts_size + AV_INPUT_BUFFER_PADDING_SIZE);
if (!buf) {
return AVERROR(ENOMEM);
}