Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-04-29 01:00:38 +0400
committerAnton Khirnov <anton@khirnov.net>2014-04-29 01:02:56 +0400
commita61c2115fb936d50b8b0328d00562fe529a7c46a (patch)
tree8de5d3e343e2806e56b7e5297a9198cfa96dc3aa /configure
parent35177ba77ff60a8b8839783f57e44bcc4214507a (diff)
configure: rework dxva in avconv handling
Move the dxva check after the dependencies have been detected, make sure the ole32 library exists. Fixes build on non-Windows.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 7 insertions, 3 deletions
diff --git a/configure b/configure
index 7d6f272d17..30f90eb260 100755
--- a/configure
+++ b/configure
@@ -1414,6 +1414,7 @@ SYSTEM_FUNCS="
aligned_malloc
closesocket
CommandLineToArgvW
+ CoTaskMemFree
CryptGenRandom
dlopen
fcntl
@@ -1502,6 +1503,7 @@ HAVE_LIST="
$TYPES_LIST
atomics_native
dos_paths
+ dxva2_lib
libc_msvcrt
libdc1394_1
libdc1394_2
@@ -3945,6 +3947,7 @@ check_func usleep
check_func_headers io.h setmode
check_func_headers stdlib.h getenv
+check_func_headers windows.h CoTaskMemFree -lole32
check_func_headers windows.h GetProcessAffinityMask
check_func_headers windows.h GetProcessTimes
check_func_headers windows.h GetSystemTimeAsFileTime
@@ -4146,9 +4149,6 @@ enabled vdpau && enabled xlib &&
prepend avconv_libs $($ldflags_filter "-lvdpau") &&
enable vdpau_x11
-enabled dxva2 &&
- prepend avconv_libs $($ldflags_filter "-lole32")
-
enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
# add some useful compiler flags if supported
@@ -4352,6 +4352,10 @@ check_deps $CONFIG_LIST \
$HAVE_LIST \
$ALL_COMPONENTS \
+enabled_all dxva2 CoTaskMemFree &&
+ prepend avconv_libs $($ldflags_filter "-lole32") &&
+ enable dxva2_lib
+
! enabled_any memalign posix_memalign aligned_malloc &&
enabled_any $need_memalign && enable memalign_hack