mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-01-05 13:45:37 +01:00
x86: call most of the x86 dsp init functions under if (ARCH_X86)
Rename the called dsp init functions to *_init_x86.
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
#include "libavcodec/dct.h"
|
||||
#include "fft.h"
|
||||
|
||||
av_cold void ff_fft_init_mmx(FFTContext *s)
|
||||
av_cold void ff_fft_init_x86(FFTContext *s)
|
||||
{
|
||||
int has_vectors = av_get_cpu_flags();
|
||||
#if ARCH_X86_32
|
||||
@@ -56,7 +56,7 @@ av_cold void ff_fft_init_mmx(FFTContext *s)
|
||||
}
|
||||
|
||||
#if CONFIG_DCT
|
||||
av_cold void ff_dct_init_mmx(DCTContext *s)
|
||||
av_cold void ff_dct_init_x86(DCTContext *s)
|
||||
{
|
||||
int has_vectors = av_get_cpu_flags();
|
||||
if (EXTERNAL_SSE(has_vectors))
|
||||
|
||||
Reference in New Issue
Block a user