From b16bf913d8edacc368913fdaa92a23ae7d18d193 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 21 Feb 2013 13:05:16 +0100 Subject: dxva2: move _WIN32_WINNT handling to public header This removes duplicate code Reviewed-by: James Almer Signed-off-by: Michael Niedermayer --- libavcodec/dxva2.h | 7 +++++++ libavcodec/dxva2_internal.h | 8 -------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/libavcodec/dxva2.h b/libavcodec/dxva2.h index 9620eda802..ac39e06917 100644 --- a/libavcodec/dxva2.h +++ b/libavcodec/dxva2.h @@ -29,7 +29,14 @@ * Public libavcodec DXVA2 header. */ +#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0600 +#undef _WIN32_WINNT +#endif + +#if !defined(_WIN32_WINNT) #define _WIN32_WINNT 0x0600 +#endif + #include #include #include diff --git a/libavcodec/dxva2_internal.h b/libavcodec/dxva2_internal.h index dd1c7ae6be..8a454c1299 100644 --- a/libavcodec/dxva2_internal.h +++ b/libavcodec/dxva2_internal.h @@ -23,14 +23,6 @@ #ifndef AVCODEC_DXVA_INTERNAL_H #define AVCODEC_DXVA_INTERNAL_H -#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0600 -#undef _WIN32_WINNT -#endif - -#if !defined(_WIN32_WINNT) -#define _WIN32_WINNT 0x0600 -#endif - #define COBJMACROS #include "config.h" -- cgit v1.2.1