Re: [FFmpeg-devel] [PATCH 5/5] avcodec/fft_template: Perform some checks at compile-time

2021-01-07 Thread Lynne
Jan 7, 2021, 00:13 by andreas.rheinha...@gmail.com: > The fixed point FFT never uses the 32bit revtab; this commit adds > some compile-time checks to make sure that dead code doesn't get > compiled in. > > Also, while just at it, fix the indentation in ff_fft_init() and make sure > that a do {} wh

[FFmpeg-devel] [PATCH 5/5] avcodec/fft_template: Perform some checks at compile-time

2021-01-06 Thread Andreas Rheinhardt
The fixed point FFT never uses the 32bit revtab; this commit adds some compile-time checks to make sure that dead code doesn't get compiled in. Also, while just at it, fix the indentation in ff_fft_init() and make sure that a do {} while (0) macro does not already swallow the semicolon on its own.