comparison configure @ 20054:8760c8681eac

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.
author lorenm
date Thu, 05 Oct 2006 02:03:10 +0000
parents be7b8a83649c
children 6b5e20b52e7a
comparison
equal deleted inserted replaced
20053:63979c96cca5 20054:8760c8681eac
6509 echocheck "x264" 6509 echocheck "x264"
6510 if test "$_x264" = auto ; then 6510 if test "$_x264" = auto ; then
6511 cat > $TMPC << EOF 6511 cat > $TMPC << EOF
6512 #include <inttypes.h> 6512 #include <inttypes.h>
6513 #include <x264.h> 6513 #include <x264.h>
6514 #if X264_BUILD < 48 6514 #if X264_BUILD < 53
6515 #error We do not support old versions of x264. Get the latest from SVN. 6515 #error We do not support old versions of x264. Get the latest from SVN.
6516 #endif 6516 #endif
6517 int main(void) { x264_encoder_open((void*)0); return 0; } 6517 int main(void) { x264_encoder_open((void*)0); return 0; }
6518 EOF 6518 EOF
6519 _ld_x264="$_ld_x264 -lx264 $_ld_pthread" 6519 _ld_x264="$_ld_x264 -lx264 $_ld_pthread"