summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2012-06-24 11:17:13 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-09-13 04:41:59 +0200
commit371e221d632d3e2450223c152c8c7e26ae4005a8 (patch)
tree285c21c0ad1e8e9b592021fc3b724376b011bdd1
parent62133b38ed043b57eeecbe7fc8b6f187fd92e5e0 (diff)
downloadffmpeg-371e221d632d3e2450223c152c8c7e26ae4005a8.tar.gz
dxva2: include dxva.h if found
Apparently, some build environments require dxva.h even for dxva2, while others lack this header entirely. Including it conditionally allows building in both cases. Signed-off-by: Martin Storsjö <martin@martin.st> (cherry picked from commit fa84506177f0246b30d4ea6a99ee5d419f3e4550) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rwxr-xr-xconfigure2
-rw-r--r--libavcodec/dxva2_internal.h7
2 files changed, 9 insertions, 0 deletions
diff --git a/configure b/configure
index 89bd4dc22d..9587c88169 100755
--- a/configure
+++ b/configure
@@ -1037,6 +1037,7 @@ HAVE_LIST="
dlfcn_h
dlopen
dos_paths
+ dxva_h
ebp_available
ebx_available
exp2
@@ -2543,6 +2544,7 @@ check_func_headers windows.h VirtualAlloc
check_header conio.h
check_header dlfcn.h
+check_header dxva.h
check_header dxva2api.h
check_header malloc.h
check_header poll.h
diff --git a/libavcodec/dxva2_internal.h b/libavcodec/dxva2_internal.h
index 23d4d87522..fcf45bc664 100644
--- a/libavcodec/dxva2_internal.h
+++ b/libavcodec/dxva2_internal.h
@@ -25,7 +25,14 @@
#define _WIN32_WINNT 0x0600
#define COBJMACROS
+
+#include "config.h"
+
#include "dxva2.h"
+#if HAVE_DXVA_H
+#include <dxva.h>
+#endif
+
#include "avcodec.h"
#include "mpegvideo.h"