lavu/tx: add the inplace flag to PFA FFTs

They support in-place, because they have to use a temporary buffer.
This commit is contained in:
Lynne 2022-09-10 02:26:49 +02:00
parent 8c283e8fe6
commit 645a1f4422
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464

View File

@ -836,7 +836,7 @@ static const FFTXCodelet TX_NAME(ff_tx_fft_pfa_##N##xM_def) = { \
.name = TX_NAME_STR("fft_pfa_" #N "xM"), \
.function = TX_NAME(ff_tx_fft_pfa_##N##xM), \
.type = TX_TYPE(FFT), \
.flags = AV_TX_UNALIGNED | FF_TX_OUT_OF_PLACE, \
.flags = AV_TX_UNALIGNED | AV_TX_INPLACE | FF_TX_OUT_OF_PLACE, \
.factors = { N, TX_FACTOR_ANY }, \
.min_len = N*2, \
.max_len = TX_LEN_UNLIMITED, \