diff options
author | James Almer <jamrial@gmail.com> | 2025-06-21 23:22:31 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2025-06-22 09:31:44 -0300 |
commit | dbe94e1110090fbfd0a105c847298d8e3fbc92f1 (patch) | |
tree | 56013c11f531a39f67495e4740aa2a257539f8d4 | |
parent | 27590d86534b0c94f12b9a206410f475fb008e72 (diff) | |
download | ffmpeg-dbe94e1110090fbfd0a105c847298d8e3fbc92f1.tar.gz |
avfilter/x86/f_ebur128: replace AVX2 instruction with AVX equivalent
Using vpbroadcastq in an AVX function will result in SIGILL errors on pre
Haswell/Zen processors.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavfilter/x86/f_ebur128.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/x86/f_ebur128.asm b/libavfilter/x86/f_ebur128.asm index c7a3e1846d..72ff47b46e 100644 --- a/libavfilter/x86/f_ebur128.asm +++ b/libavfilter/x86/f_ebur128.asm @@ -145,7 +145,7 @@ cglobal ebur128_filter_channels, 7, 9, 14, dsp, samples, cache400, cache3000, su RET cglobal ebur128_find_peak_2ch, 4, 5, 3, ch_peaks, channels, samples, nb_samples - vpbroadcastq m2, [abs_mask] + movddup m2, [abs_mask] movupd m0, [ch_peaksq] .loop: movupd m1, [samplesq] |