diff options
author | Lynne <dev@lynne.ee> | 2019-07-27 18:54:20 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2019-08-02 01:19:52 +0100 |
commit | 42e2319ba9b75c3ca55be7f18a0322ecb498ea97 (patch) | |
tree | 0ea27392acae99024413f7acf50e70d6f8034130 /libavutil/Makefile | |
parent | f60b1211b2aa7b6e8902d64072b678b4ccd87e54 (diff) | |
download | ffmpeg-42e2319ba9b75c3ca55be7f18a0322ecb498ea97.tar.gz |
lavu/tx: add support for double precision FFT and MDCT
Simply moves and templates the actual transforms to support an
additional data type.
Unlike the float version, which is equal or better than libfftw3f,
double precision output is bit identical with libfftw3.
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 8a7a44e4b5..57e6e3d7e8 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -161,6 +161,8 @@ OBJS = adler32.o \ xtea.o \ tea.o \ tx.o \ + tx_float.o \ + tx_double.o OBJS-$(CONFIG_CUDA) += hwcontext_cuda.o OBJS-$(CONFIG_D3D11VA) += hwcontext_d3d11va.o |