mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avfilter/af_arnndn: use RNN_COPY macro to copy
This commit is contained in:
parent
6158029dfc
commit
999f5160c4
@ -413,8 +413,7 @@ static void inverse_transform(DenoiseState *st, float *out, const AVComplexFloat
|
||||
AVComplexFloat x[WINDOW_SIZE];
|
||||
AVComplexFloat y[WINDOW_SIZE];
|
||||
|
||||
for (int i = 0; i < FREQ_SIZE; i++)
|
||||
x[i] = in[i];
|
||||
RNN_COPY(x, in, FREQ_SIZE);
|
||||
|
||||
for (int i = FREQ_SIZE; i < WINDOW_SIZE; i++) {
|
||||
x[i].re = x[WINDOW_SIZE - i].re;
|
||||
|
Loading…
x
Reference in New Issue
Block a user