diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2006-12-04 22:25:13 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2006-12-04 22:25:13 +0000 |
commit | e6d1a700e06ba8a985c29ba212b359c9e33bcc55 (patch) | |
tree | 3c98db75ad4f78f4e44c9c6bf974cfff704d1ce2 /configure.ac | |
parent | e8bcf74e1a8a78e15d3d147f1d485c07a5ac3cd6 (diff) | |
download | xine-lib-e6d1a700e06ba8a985c29ba212b359c9e33bcc55.tar.gz xine-lib-e6d1a700e06ba8a985c29ba212b359c9e33bcc55.tar.bz2 |
trying an updated ffmpeg version (51.25.0)
CVS patchset: 8405
CVS date: 2006/12/04 22:25:13
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 34f538462..c26a9e337 100644 --- a/configure.ac +++ b/configure.ac @@ -384,7 +384,7 @@ use internal ffmpeg. *********************************************************************]) else AC_MSG_RESULT([using included ffmpeg]) - LIBFFMPEG_CPPFLAGS="-DSIMPLE_IDCT -DHAVE_AV_CONFIG_H -DRUNTIME_CPUDETECT -DCONFIG_RISKY -DCONFIG_DECODERS -DXINE_MPEG_ENCODER -DCONFIG_ZLIB -DCONFIG_GPL" + LIBFFMPEG_CPPFLAGS="-DSIMPLE_IDCT -DHAVE_AV_CONFIG_H -DRUNTIME_CPUDETECT -DCONFIG_RISKY -DCONFIG_DECODERS -DXINE_MPEG_ENCODER -DCONFIG_ZLIB -DCONFIG_GPL -DCONFIG_MP3_DECODER -DCONFIG_MP2_DECODER -DCONFIG_DVVIDEO_DECODER" AC_SUBST([LIBFFMPEG_CPPFLAGS]) AC_CHECK_TYPES(int_fast8_t, [], [LIBFFMPEG_CPPFLAGS="$LIBFFMPEG_CPPFLAGS -DEMULATE_FAST_INT"]) @@ -1963,6 +1963,15 @@ if test x"$have_ip_mreqn" = "xyes"; then AC_DEFINE(HAVE_IP_MREQN,1,[Define this if you have ip_mreqn in netinet/in.h]) fi +dnl --------------------------------------------- +dnl ASM ALIGN is power of two ? +dnl --------------------------------------------- +asmalign_pot="unknown" +if test $asmalign_pot = "unknown"; then + AC_TRY_COMPILE([], [ asm (".align 3"); ],[ + AC_DEFINE([HAVE_ASMALIGN_POT], 1, "asmalign power of two")],[ + AC_DEFINE([HAVE_ASMALIGN_POT], 0, "asmalign power of two")]) +fi dnl --------------------------------------------- dnl Some extra checks. |