# HG changeset patch # User lorenm # Date 1108698927 0 # Node ID 23dc67608626c538519fd3418e83695a75c1510e # Parent 1f5d0760d0370ebd787b1592e0dc41597500d3e8 Move x264 version check into configure. diff -r 1f5d0760d037 -r 23dc67608626 configure --- a/configure Thu Feb 17 21:03:29 2005 +0000 +++ b/configure Fri Feb 18 03:55:27 2005 +0000 @@ -5906,6 +5906,9 @@ #include #include #include +#if X264_BUILD < 0x0010 +#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; } EOF _ld_x264="$_ld_x264 -lx264 $_ld_lm" diff -r 1f5d0760d037 -r 23dc67608626 libmpcodecs/ve_x264.c --- a/libmpcodecs/ve_x264.c Thu Feb 17 21:03:29 2005 +0000 +++ b/libmpcodecs/ve_x264.c Fri Feb 18 03:55:27 2005 +0000 @@ -49,10 +49,6 @@ #include -#if X264_BUILD < 0x0010 -#error We do not support old versions of x264. Get the latest from SVN. -#endif - typedef struct _h264_module_t { muxer_stream_t *mux; x264_param_t param;