diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-02-01 03:13:06 +0000 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-02-14 06:15:36 +0000 |
commit | d2119f624d392f53f80c3d36ffaadca23aef8a10 (patch) | |
tree | c867ecd8f2b9f4bf7aafba9198da92f78697993b /libavcodec/aacdec.c | |
parent | 373ee2c61871369c05efb1f7db5b723924a4b840 (diff) | |
download | ffmpeg-d2119f624d392f53f80c3d36ffaadca23aef8a10.tar.gz |
imdct15: rename to mdct15 and add a forward transform
Handles strides (needed for Opus transients), does pre-reindexing and folding
without needing a copy.
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 08d92fe145..726ea03dc4 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -42,7 +42,7 @@ #include "internal.h" #include "get_bits.h" #include "fft.h" -#include "imdct15.h" +#include "mdct15.h" #include "lpc.h" #include "kbdwin.h" #include "sinewin.h" |