From bb198c4997d5036f3bf91de51e44f807115677d0 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 27 Sep 2015 20:54:01 +0200 Subject: d3d11va: make av_d3d11va_alloc_context() available at all times The public API should not depend on the build configuration. --- libavcodec/d3d11va.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'libavcodec/d3d11va.c') diff --git a/libavcodec/d3d11va.c b/libavcodec/d3d11va.c index eea01b8ae5..946de06cf1 100644 --- a/libavcodec/d3d11va.c +++ b/libavcodec/d3d11va.c @@ -23,6 +23,8 @@ #include #include "config.h" + +#if CONFIG_D3D11VA #include "libavutil/error.h" #include "libavutil/mem.h" @@ -36,3 +38,11 @@ AVD3D11VAContext *av_d3d11va_alloc_context(void) res->context_mutex = INVALID_HANDLE_VALUE; return res; } +#else +struct AVD3D11VAContext *av_d3d11va_alloc_context(void); + +struct AVD3D11VAContext *av_d3d11va_alloc_context(void) +{ + return NULL; +} +#endif /* CONFIG_D3D11VA */ -- cgit v1.2.3