]> git.sesse.net Git - vlc/commitdiff
vdpau: fix libavutil version number
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 29 May 2014 14:35:22 +0000 (22:35 +0800)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 29 May 2014 12:13:29 +0000 (20:13 +0800)
configure.ac

index b84371ac1c8b8f096684b33b98d4d557a58b8cb4..2611a110304951158170993d6f4c134fb74e109a 100644 (file)
@@ -3156,14 +3156,14 @@ AS_IF([test "${have_vdpau}" = "yes" -a "${have_avcodec}" = "yes"], [
     libav) av_vdpau_ver="55.26.0" ;;
     ffmpeg) av_vdpau_ver="55.42.100" ;;
   esac
-  PKG_CHECK_EXISTS([libavutil >= 0.52.4 libavcodec >= ${av_vdpau_ver}], [
+  PKG_CHECK_EXISTS([libavutil >= 52.4.0 libavcodec >= ${av_vdpau_ver}], [
     have_avcodec_vdpau="yes"
     AC_MSG_NOTICE([VDPAU decoding acceleration activated])
   ], [
     AS_IF([test -n "${enable_vdpau}"], [
-      AC_MSG_ERROR([libavutil >= 0.52.4 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
+      AC_MSG_ERROR([libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
     ], [
-      AC_MSG_WARN([libavutil >= 0.52.4 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
+      AC_MSG_WARN([libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
     ])
   ])
 ])