summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorlorenm <lorenm@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-05 02:03:10 +0000
committerlorenm <lorenm@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-05 02:03:10 +0000
commit0594cd07a09664f9af6340cedc2f0fe52e70aa61 (patch)
tree553640041ef71776cb23b6004b06a8740fb1c0ef /configure
parent1240e6bde5c194ac2c0090186b3d406b5eb55521 (diff)
downloadmpv-0594cd07a09664f9af6340cedc2f0fe52e70aa61.tar.bz2
mpv-0594cd07a09664f9af6340cedc2f0fe52e70aa61.tar.xz
Remove the x264 option parser, and pass the options on to libx264 as a string instead. This provides automatic support for all current and future x264 options.
A few options had to be reorganized: partitions, deblockalpha/beta, me, direct_pred. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20060 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index a9d3e0677c..5990d3fc4e 100755
--- a/configure
+++ b/configure
@@ -6511,7 +6511,7 @@ if test "$_x264" = auto ; then
cat > $TMPC << EOF
#include <inttypes.h>
#include <x264.h>
-#if X264_BUILD < 48
+#if X264_BUILD < 53
#error We do not support old versions of x264. Get the latest from SVN.
#endif
int main(void) { x264_encoder_open((void*)0); return 0; }