diff options
author | James Almer <jamrial@gmail.com> | 2014-01-18 02:29:22 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-18 17:08:25 +0100 |
commit | 26800e386454597481f5a74eeedf3ca5ef5e2987 (patch) | |
tree | e76a8ec488ab759ebeb9c31f0d601d7fd31dc961 /libavcodec/x86/vp9mc.asm | |
parent | 0117ba5594702c6e42767ac93358f57c24416514 (diff) | |
download | ffmpeg-26800e386454597481f5a74eeedf3ca5ef5e2987.tar.gz |
vp9/x86: rename ff_avg[48]_sse to ff_avg[48]_mmxext
pavgb is an sse integer instruction, so the mmxext flag is enough
Signed-off-by: James Almer <jamrial@gmail.com>
Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/vp9mc.asm')
-rw-r--r-- | libavcodec/x86/vp9mc.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/vp9mc.asm b/libavcodec/x86/vp9mc.asm index 488ad70ecf..154ab2b4f9 100644 --- a/libavcodec/x86/vp9mc.asm +++ b/libavcodec/x86/vp9mc.asm @@ -381,7 +381,7 @@ cglobal %1%2, 5, 5, 4, dst, dstride, src, sstride, h INIT_MMX mmx fpel_fn put, 4, strideq, strideq*2, stride3q, 4 fpel_fn put, 8, strideq, strideq*2, stride3q, 4 -INIT_MMX sse +INIT_MMX mmxext fpel_fn avg, 4, strideq, strideq*2, stride3q, 4 fpel_fn avg, 8, strideq, strideq*2, stride3q, 4 INIT_XMM sse |