mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
x86/tx_float: add missing FF_TX_OUT_OF_PLACE flag to functions
This caused smaller length dedicated transforms to not be picked up.
This commit is contained in:
parent
008c131d68
commit
6c397f6bb5
@ -67,8 +67,8 @@ static const FFTXCodelet ff_tx_ ##fn## _def = { \
|
||||
|
||||
#define DECL_SR_CD_DEF(fn_name, len, init_fn, fn_prio, cpu, fn_flags) \
|
||||
DECL_CD_DEF(fn_name, FFT, len, len, 2, 0, \
|
||||
fft_sr_codelet_init_ ##init_fn, fn_prio, \
|
||||
AV_CPU_FLAG_ ##cpu, fn_flags) \
|
||||
fft_sr_codelet_init_ ##init_fn, fn_prio, \
|
||||
AV_CPU_FLAG_ ##cpu, FF_TX_OUT_OF_PLACE | fn_flags)
|
||||
|
||||
DECL_SR_CD_DEF(fft2_float_sse3, 2, b0_i0, 128, SSE3, AV_TX_INPLACE)
|
||||
DECL_SR_CD_DEF(fft2_ns_float_sse3, 2, b8_i0, 192, SSE3, AV_TX_INPLACE | FF_TX_PRESHUFFLE)
|
||||
|
Loading…
Reference in New Issue
Block a user