diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-15 18:01:10 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-03-14 17:23:32 +0100 |
commit | 994c4bc10751e39c7ed9f67ffd0c0dea5223daf2 (patch) | |
tree | 733e21b2c239787e61d5a82fdb4326c3780dc2fb /libavcodec | |
parent | 522d850e68ec4b77d3477b3c8f55b1ba00a9d69a (diff) | |
download | ffmpeg-streaming-994c4bc10751e39c7ed9f67ffd0c0dea5223daf2.zip ffmpeg-streaming-994c4bc10751e39c7ed9f67ffd0c0dea5223daf2.tar.gz |
x86util: Port all macros to cpuflags
Also do some small cosmetic changes: Drop pointless _MMX suffix from ABSD2
macro name, drop pointless check for MMX support, we always assume MMX is
available in our SIMD code, fix spelling.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/audiodsp.asm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/x86/audiodsp.asm b/libavcodec/x86/audiodsp.asm index e038c18..0f183c5 100644 --- a/libavcodec/x86/audiodsp.asm +++ b/libavcodec/x86/audiodsp.asm @@ -66,7 +66,7 @@ SCALARPRODUCT ; %1 = number of xmm registers used ; %2 = number of inline load/process/store loops per asm loop ; %3 = process 4*mmsize (%3=0) or 8*mmsize (%3=1) bytes per loop -; %4 = CLIPD function takes min/max as float instead of int (CLIPD_SSE2) +; %4 = CLIPD function takes min/max as float instead of int (SSE2 version) ; %5 = suffix %macro VECTOR_CLIP_INT32 4-5 cglobal vector_clip_int32%5, 5,5,%1, dst, src, min, max, len @@ -122,14 +122,11 @@ cglobal vector_clip_int32%5, 5,5,%1, dst, src, min, max, len %endmacro INIT_MMX mmx -%define CLIPD CLIPD_MMX VECTOR_CLIP_INT32 0, 1, 0, 0 INIT_XMM sse2 VECTOR_CLIP_INT32 6, 1, 0, 0, _int -%define CLIPD CLIPD_SSE2 VECTOR_CLIP_INT32 6, 2, 0, 1 INIT_XMM sse4 -%define CLIPD CLIPD_SSE41 %ifdef m8 VECTOR_CLIP_INT32 11, 1, 1, 0 %else |