diff options
author | James Almer <jamrial@gmail.com> | 2016-03-04 23:35:54 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-03-05 00:39:53 -0300 |
commit | a3659ca0148a82d9e92805e17fa7a7880c6f5e5b (patch) | |
tree | e4b0f0857aacb342e9124db312a5390eb6449181 | |
parent | b3dc51dd571f0852d47e67c4c02fc7eb73720059 (diff) | |
download | ffmpeg-a3659ca0148a82d9e92805e17fa7a7880c6f5e5b.tar.gz |
avcodec/cos_tablegen: extend table generation to 17bits
Fixes compilation of fft with hardcoded tables
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/cos_tablegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cos_tablegen.c b/libavcodec/cos_tablegen.c index dbd0cc0d97..7206aad5dd 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" |