summaryrefslogtreecommitdiffstats
path: root/libhb/decavcodec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/decavcodec.c')
-rw-r--r--libhb/decavcodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decavcodec.c b/libhb/decavcodec.c
index a6f120800..74d07d21b 100644
--- a/libhb/decavcodec.c
+++ b/libhb/decavcodec.c
@@ -1584,7 +1584,7 @@ static int setup_extradata( hb_work_object_t *w, hb_buffer_t *in )
{
pv->context->extradata_size = size;
pv->context->extradata =
- av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
+ av_malloc(size + AV_INPUT_BUFFER_PADDING_SIZE);
if (pv->context->extradata == NULL)
return 1;
memcpy(pv->context->extradata, in->data, size);