diff options
author | James Almer <jamrial@gmail.com> | 2014-05-31 16:36:45 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-01 02:10:32 +0200 |
commit | e1bd40fe6beb74a942b7b0cff2d077750a7e733e (patch) | |
tree | a8f9f48c8cd47cf482e3284333b2d28720575cd6 | |
parent | 6dc709f0f5c5e019ac9a1ea51bb06c04edc1e208 (diff) | |
download | ffmpeg-e1bd40fe6beb74a942b7b0cff2d077750a7e733e.tar.gz |
x86/motion_est: enable sad16_sse2 on k10 CPUs
The check is meant for k8 CPUs. sad16_sse2 is ~20% faster than sad16_mmxext on k10.
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/motion_est.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/motion_est.c b/libavcodec/x86/motion_est.c index f1e782b23d..ef614c9fb0 100644 --- a/libavcodec/x86/motion_est.c +++ b/libavcodec/x86/motion_est.c @@ -481,7 +481,7 @@ av_cold void ff_dsputil_init_pix_mmx(DSPContext *c, AVCodecContext *avctx) c->pix_abs[1][3] = sad8_xy2_mmxext; } } - if (INLINE_SSE2(cpu_flags) && !(cpu_flags & AV_CPU_FLAG_3DNOW) && avctx->codec_id != AV_CODEC_ID_SNOW) { + if (INLINE_SSE2(cpu_flags) && !(cpu_flags & AV_CPU_FLAG_SSE2SLOW) && avctx->codec_id != AV_CODEC_ID_SNOW) { c->sad[0] = sad16_sse2; } #endif /* HAVE_INLINE_ASM */ |