mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-20 05:46:57 +00:00
avutil/tx: fix forward compound non-mod-15 based MDCTs
There was a hardcoded value left. Wasn't caught earlier as no code uses compound forward mod-3/5 MDCTs yet.
This commit is contained in:
parent
6276b4db97
commit
6044534964
@ -504,7 +504,7 @@ static void compound_mdct_##N##xM(AVTXContext *s, void *_dst, void *_src, \
|
||||
fft##N(s->tmp + s->revtab[i], fft##N##in, m); \
|
||||
} \
|
||||
\
|
||||
for (int i = 0; i < 15; i++) \
|
||||
for (int i = 0; i < N; i++) \
|
||||
fftp(s->tmp + m*i); \
|
||||
\
|
||||
for (int i = 0; i < len8; i++) { \
|
||||
|
Loading…
Reference in New Issue
Block a user