From d054069c1540ff2c7fb8097b830ee852afad7021 Mon Sep 17 00:00:00 2001 From: James Almer Date: Sat, 25 Mar 2017 21:36:10 -0300 Subject: [PATCH] avformat/mov: stop using deprecated codec flags Signed-off-by: James Almer --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 41bf21d8c3..2fce5a6835 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -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); }