summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorSteven Liu <lq@chinaffmpeg.org>2016-10-12 17:36:51 +0800
committerMichael Niedermayer <michael@niedermayer.cc>2016-10-21 16:54:25 +0200
commit4d92bd3ca2252b461b352bc2af3ebeabe5394715 (patch)
tree10999650180bcd07034b24826d4a2a08a9d22f37 /libavcodec
parent47f74df29cb1ad2cef468f6acc7c572241937b04 (diff)
avcodec/vda: define av_vda_default_init2 when CONFIG_H264_VDA_HWACCEL equ 0
on OSX: ../configure --disable-everything --enable-demuxer=hls make error message: Undefined symbols for architecture x86_64: "_av_vda_default_init2", referenced from:_videotoolbox_init in ffmpeg_videotoolbox.o so add av_vda_default_init2 when CONFIG_H264_VDA_HWACCEL=0 Signed-off-by: Steven Liu <lq@chinaffmpeg.org> Reviewed-by: wm4 <nfxjfg@googlemail.com> Reviewed-by: Xidorn Quan <quanxunzhen@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/vda.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/vda.c b/libavcodec/vda.c
index 4670140c76..819ae030b0 100644
--- a/libavcodec/vda.c
+++ b/libavcodec/vda.c
@@ -73,6 +73,11 @@ int av_vda_default_init(AVCodecContext *avctx)
return AVERROR(ENOSYS);
}
+int av_vda_default_init2(AVCodecContext *avctx, AVVDAContext *vdactx)
+{
+ return AVERROR(ENOSYS);
+}
+
void av_vda_default_free(AVCodecContext *ctx)
{
}