diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-15 18:33:59 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-11-18 18:34:05 +0100 |
commit | 87af05c575791406090272b6a37b50d51e85490c (patch) | |
tree | d654993de187ea4a7c04156775d8f9097b3100b6 /libavcodec/x86 | |
parent | 1c5805521c3e406886341d752ebf38f8d41e1d13 (diff) | |
download | ffmpeg-87af05c575791406090272b6a37b50d51e85490c.tar.gz |
x86: SPLATD: port to cpuflags
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/dsputil.asm | 2 | ||||
-rw-r--r-- | libavcodec/x86/fmtconvert.asm | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/x86/dsputil.asm b/libavcodec/x86/dsputil.asm index de54540818..726d4c6362 100644 --- a/libavcodec/x86/dsputil.asm +++ b/libavcodec/x86/dsputil.asm @@ -1124,11 +1124,9 @@ cglobal vector_clip_int32%5, 5,5,%1, dst, src, min, max, len %endmacro INIT_MMX mmx -%define SPLATD SPLATD_MMX %define CLIPD CLIPD_MMX VECTOR_CLIP_INT32 0, 1, 0, 0 INIT_XMM sse2 -%define SPLATD SPLATD_SSE2 VECTOR_CLIP_INT32 6, 1, 0, 0, _int %define CLIPD CLIPD_SSE2 VECTOR_CLIP_INT32 6, 2, 0, 1 diff --git a/libavcodec/x86/fmtconvert.asm b/libavcodec/x86/fmtconvert.asm index 77b8bd7069..8267bd47dc 100644 --- a/libavcodec/x86/fmtconvert.asm +++ b/libavcodec/x86/fmtconvert.asm @@ -72,12 +72,9 @@ cglobal int32_to_float_fmul_scalar, 4, 4, %1, dst, src, mul, len %endmacro INIT_XMM sse -%define SPLATD SPLATD_SSE INT32_TO_FLOAT_FMUL_SCALAR 5 INIT_XMM sse2 -%define SPLATD SPLATD_SSE2 INT32_TO_FLOAT_FMUL_SCALAR 3 -%undef SPLATD ;------------------------------------------------------------------------------ |