Fixes compilation of fft with hardcoded tables Signed-off-by: James Almer <jamr...@gmail.com> --- fate-fft tests only up to 12 bits, so i ran fft-test -n17 manually and it didn't fail (It was also very slow). This change also generates sine tables for 17bit which are currently unused, so they kinda bloat the binary. Maybe someone wants to update rdft like it was done for fft and give them purpose?
libavcodec/cos_tablegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cos_tablegen.c b/libavcodec/cos_tablegen.c index dbd0cc0..7206aad 100644 --- a/libavcodec/cos_tablegen.c +++ b/libavcodec/cos_tablegen.c @@ -26,7 +26,7 @@ #include "libavutil/mathematics.h" -#define BITS 16 +#define BITS 17 #define FLOATFMT "%.18e" #define FIXEDFMT "%6d" -- 2.7.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel