summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2020-02-10 17:36:45 +0000
committerLynne <dev@lynne.ee>2020-02-13 17:11:30 +0000
commita38c6f47c978187c37c0154ced84f1ea4810c7ab (patch)
treef9cd134421076018af8a292351bc180a1a638964
parente8f054b095baa194623b3852f06fc507ae697503 (diff)
lavu/tx: undef the correct macro
It was renamed and no warning was given for undeffing a nonexisting one.
-rw-r--r--libavutil/tx_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/tx_template.c b/libavutil/tx_template.c
index d33c9ce351..0dafc4ba76 100644
--- a/libavutil/tx_template.c
+++ b/libavutil/tx_template.c
@@ -567,7 +567,7 @@ int TX_NAME(ff_tx_init_mdct_fft)(AVTXContext *s, av_tx_fn *tx,
CHECK_FACTOR(n, 15, len)
CHECK_FACTOR(n, 5, len)
CHECK_FACTOR(n, 3, len)
-#undef CHECK_NPTWO_FACTOR
+#undef CHECK_FACTOR
/* len must be a power of two now */
if (!(len & (len - 1)) && len >= 4 && len <= max_ptwo) {