diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-06-24 11:17:13 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-13 04:45:36 +0200 |
commit | 0f54c97f58648cf160b7d85b700e38ba84214f69 (patch) | |
tree | 9a06d1d80caf6e154249999a8327165d5eb0dd59 /libavcodec | |
parent | a1f678f7ca48d2dd9614e30f1d9c58bfaac07bda (diff) | |
download | ffmpeg-0f54c97f58648cf160b7d85b700e38ba84214f69.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)
Conflicts:
configure
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dxva2_internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
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" |