summaryrefslogtreecommitdiff
path: root/libavcodec/fft-internal.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-31 22:20:47 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-05 19:46:33 +0200
commit211619ad7f43b99a0c1100398f157544b5724460 (patch)
tree0e5dfef62381c4b668cf49cebe83c30f18b08cd4 /libavcodec/fft-internal.h
parent763c501432267cc93a2812fdfcf21c50be03f720 (diff)
avcodec: Remove the FFT_FIXED_32 define
Since the removal of the 16-bit FFT said define is unnecessary as FFT_FIXED_32 is always !FFT_FLOAT. But one wouldn't believe it when looking at the code. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/fft-internal.h')
-rw-r--r--libavcodec/fft-internal.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/fft-internal.h b/libavcodec/fft-internal.h
index cd809578ce..b0d8d80efd 100644
--- a/libavcodec/fft-internal.h
+++ b/libavcodec/fft-internal.h
@@ -36,8 +36,6 @@
#else /* FFT_FLOAT */
-#if FFT_FIXED_32
-
#define CMUL(dre, dim, are, aim, bre, bim) do { \
int64_t accu; \
(accu) = (int64_t)(bre) * (are); \
@@ -48,8 +46,6 @@
(dim) = (int)(((accu) + 0x40000000) >> 31); \
} while (0)
-#endif /* FFT_FIXED_32 */
-
#endif /* FFT_FLOAT */
#define ff_imdct_calc_c FFT_NAME(ff_imdct_calc_c)