]> git.sesse.net Git - ffmpeg/commit
lavu/tx: implement 32 bit fixed point FFT and MDCT
authorLynne <dev@lynne.ee>
Sat, 8 Feb 2020 23:13:28 +0000 (23:13 +0000)
committerLynne <dev@lynne.ee>
Thu, 13 Feb 2020 17:10:34 +0000 (17:10 +0000)
commite8f054b095baa194623b3852f06fc507ae697503
tree32fc6a24fb5747e5a11ee74fb8aaf6d62a517882
parente007059d6617ca966380810fe03c571566ecd9c3
lavu/tx: implement 32 bit fixed point FFT and MDCT

Required minimal changes to the code so made sense to implement.
FFT and MDCT tested, the output of both was properly rounded.
Fun fact: the non-power-of-two fixed-point FFT and MDCT are the fastest ever
non-power-of-two fixed-point FFT and MDCT written.
This can replace the power of two integer MDCTs in aac and ac3 if the
MIPS optimizations are ported across.
Unfortunately the ac3 encoder uses a 16-bit fixed point forward transform,
unlike the encoder which uses a 32bit inverse transform, so some modifications
might be required there.

The 3-point FFT is somewhat less accurate than it otherwise could be,
having minor rounding errors with bigger transforms. However, this
could be improved later, and the way its currently written is the way one
would write assembly for it.
Similar rounding errors can also be found throughout the power of two FFTs
as well, though those are more difficult to correct.
Despite this, the integer transforms are more than accurate enough.
doc/APIchanges
libavutil/Makefile
libavutil/tx.c
libavutil/tx.h
libavutil/tx_int32.c [new file with mode: 0644]
libavutil/tx_priv.h
libavutil/tx_template.c
libavutil/version.h