mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
x85/opusdsp: enable the functions on all FMA3 CPUs
It's not using ymm registers, so limiting it to CPUs with fast AVX is not necessary. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
80444e23ac
commit
1faedb9a11
@ -28,7 +28,7 @@ av_cold void ff_opus_dsp_init_x86(OpusDSP *ctx)
|
||||
{
|
||||
int cpu_flags = av_get_cpu_flags();
|
||||
|
||||
if (EXTERNAL_FMA3_FAST(cpu_flags)) {
|
||||
if (EXTERNAL_FMA3(cpu_flags)) {
|
||||
ctx->postfilter = ff_opus_postfilter_fma3;
|
||||
ctx->deemphasis = ff_opus_deemphasis_fma3;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user