# HG changeset patch # User uau # Date 1224987715 0 # Node ID 0f7e7c21548e30c078bf41d361b9130d548459d0 # Parent 446f2498178118f8e3deb496ee24e341de008e86 configure: Set CONFIG_MDCT and CONFIG_GOLOMB for libavcodec After the latest FFmpeg changes these must be set if certain codecs are enabled. diff -r 446f24981781 -r 0f7e7c21548e configure --- a/configure Sat Oct 25 20:41:51 2008 +0000 +++ b/configure Sun Oct 26 02:21:55 2008 +0000 @@ -7982,8 +7982,11 @@ LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF) CONFIG_ENCODERS=yes -# Some FFmpeg codecs depend on this. Enable it unconditionally for now. +# Some FFmpeg codecs depend on these. Enable them unconditionally for now. CONFIG_FFT=yes +CONFIG_MDCT=yes +CONFIG_GOLOMB=yes + CONFIG_GPL=yes CONFIG_LIBAMR=$_libamr CONFIG_LIBAMR_NB=$_libamr_nb @@ -8412,9 +8415,13 @@ #define ENABLE_SMALL 0 #define ENABLE_GRAY 0 -/* Some FFmpeg codecs depend on this. Enable it unconditionally for now. */ +/* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */ #define CONFIG_FFT 1 #define ENABLE_FFT 1 +#define CONFIG_MDCT 1 +#define ENABLE_MDCT 1 +#define CONFIG_GOLOMB 1 +#define ENABLE_GOLOMB 1 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */ #define HAVE_EBX_AVAILABLE 1