[FFmpeg-cvslog] lavu/tx: undef the correct macro

Lynne git at videolan.org
Thu Feb 13 22:37:24 EET 2020


ffmpeg | branch: master | Lynne <dev at lynne.ee> | Mon Feb 10 17:36:45 2020 +0000| [a38c6f47c978187c37c0154ced84f1ea4810c7ab] | committer: Lynne

lavu/tx: undef the correct macro

It was renamed and no warning was given for undeffing a nonexisting one.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a38c6f47c978187c37c0154ced84f1ea4810c7ab
---

 libavutil/tx_template.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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) {



More information about the ffmpeg-cvslog mailing list