summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-05-19 14:06:59 +0200
committerwm4 <wm4@nowhere>2013-05-19 14:06:59 +0200
commitb5f07e86b872564b7b0a934e1346f1ce0ed19c9f (patch)
tree30d5e06d9f2a519d70737dabc5cda1b014b7df4b
parentad8aae1708487aa4d2d99af7213f7d485c4c1a95 (diff)
downloadmpv-b5f07e86b872564b7b0a934e1346f1ce0ed19c9f.tar.bz2
mpv-b5f07e86b872564b7b0a934e1346f1ce0ed19c9f.tar.xz
configure: reject older libswresample
mpv still builds with ffmpeg 1.0.x, however libswresample keeps cuasing trouble. In older releases, libswresample simply crashed when downmixing. In somewhat newer versions, it produces distorted output and downmixing isn't even close to correct. With ffmpeg release 1.1 (ffmpeg git tag n1.1), everything seems to work fine. The release uses 0.17.102 as libswresample version, so bump the required minimum version to that.
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 2a3f1d2fab..f394e19344 100755
--- a/configure
+++ b/configure
@@ -2660,8 +2660,8 @@ fi
if test "$_resampler" = no ; then
- echocheck "libswresample >= 0.15.100"
- if pkg_config_add "libswresample >= 0.15.100" ; then
+ echocheck "libswresample >= 0.17.102"
+ if pkg_config_add "libswresample >= 0.17.102" ; then
_resampler=yes
def_resampler='#define CONFIG_LIBSWRESAMPLE'
fi