summaryrefslogtreecommitdiff
path: root/libavcodec/d3d11va.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/d3d11va.c')
-rw-r--r--libavcodec/d3d11va.c10
1 files changed, 10 insertions, 0 deletions
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 <stddef.h>
#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 */