[FFmpeg-cvslog] vaapi: require version >= 0.32.0.

Gwenole Beauchesne git at videolan.org
Wed Mar 30 17:41:34 CEST 2011


ffmpeg | branch: master | Gwenole Beauchesne <gbeauchesne at splitted-desktop.com> | Wed Mar 30 09:21:04 2011 +0200| [dd950e2ebb08cadf8f5a5c42d6506a89abc06996] | committer: Gwenole Beauchesne

vaapi: require version >= 0.32.0.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dd950e2ebb08cadf8f5a5c42d6506a89abc06996
---

 configure |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/configure b/configure
index df1b485..9cf64d2 100755
--- a/configure
+++ b/configure
@@ -2945,7 +2945,13 @@ check_func XOpenDisplay -lX11           &&
 check_func XShmCreateImage -lX11 -lXext &&
 check_func XFixesGetCursorImage -lX11 -lXext -lXfixes
 
-disabled vaapi || check_lib va/va.h vaInitialize -lva || disable vaapi
+if ! disabled vaapi; then
+    check_lib va/va.h vaInitialize -lva && {
+        check_cpp_condition va/va_version.h "VA_CHECK_VERSION(0,32,0)" ||
+        { echolog "Please upgrade to VA-API >= 0.32 if you would like VA-API support." &&
+          disable vaapi; }
+    } || disable vaapi
+fi
 
 if ! disabled vdpau && enabled vdpau_vdpau_h; then
 check_cpp_condition \



More information about the ffmpeg-cvslog mailing list