Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-03-26 03:36:10 +0300
committerJames Almer <jamrial@gmail.com>2017-03-26 03:37:40 +0300
commitd054069c1540ff2c7fb8097b830ee852afad7021 (patch)
tree397029f4e01e4cee3413469b760a6c2bdff78041 /libavformat
parent963cd953fbf6a57d8433043f3a3b341dd85c60f0 (diff)
avformat/mov: stop using deprecated codec flags
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
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);
}