diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-10-08 16:18:33 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-03-01 10:18:15 +0100 |
commit | 39e208f4d4756367c7cd2d581847e0c1b8a429c1 (patch) | |
tree | 6c3b1695b47827dc2224fdf75b0c0be781579847 /libavcodec/x86/fmtconvert_init.c | |
parent | d1d6230ea3dd2c34bcd121f958706f3177f8d8c5 (diff) | |
download | ffmpeg-39e208f4d4756367c7cd2d581847e0c1b8a429c1.tar.gz |
build: Generalize yasm/nasm-related variable names
None of them are specific to the YASM assembler.
Diffstat (limited to 'libavcodec/x86/fmtconvert_init.c')
-rw-r--r-- | libavcodec/x86/fmtconvert_init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/x86/fmtconvert_init.c b/libavcodec/x86/fmtconvert_init.c index 2f10db4fc1..6306c8bfcb 100644 --- a/libavcodec/x86/fmtconvert_init.c +++ b/libavcodec/x86/fmtconvert_init.c @@ -27,16 +27,16 @@ #include "libavutil/x86/cpu.h" #include "libavcodec/fmtconvert.h" -#if HAVE_YASM +#if HAVE_X86ASM void ff_int32_to_float_fmul_scalar_sse (float *dst, const int32_t *src, float mul, int len); void ff_int32_to_float_fmul_scalar_sse2(float *dst, const int32_t *src, float mul, int len); -#endif /* HAVE_YASM */ +#endif /* HAVE_X86ASM */ av_cold void ff_fmt_convert_init_x86(FmtConvertContext *c, AVCodecContext *avctx) { -#if HAVE_YASM +#if HAVE_X86ASM int cpu_flags = av_get_cpu_flags(); if (EXTERNAL_SSE(cpu_flags)) { @@ -45,5 +45,5 @@ av_cold void ff_fmt_convert_init_x86(FmtConvertContext *c, AVCodecContext *avctx if (EXTERNAL_SSE2(cpu_flags)) { c->int32_to_float_fmul_scalar = ff_int32_to_float_fmul_scalar_sse2; } -#endif /* HAVE_YASM */ +#endif /* HAVE_X86ASM */ } |