summaryrefslogtreecommitdiff
path: root/vp8/encoder/x86/quantize_x86.h
diff options
context:
space:
mode:
Diffstat (limited to 'vp8/encoder/x86/quantize_x86.h')
-rw-r--r--vp8/encoder/x86/quantize_x86.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/vp8/encoder/x86/quantize_x86.h b/vp8/encoder/x86/quantize_x86.h
index 6f54bec31..df2e0bc39 100644
--- a/vp8/encoder/x86/quantize_x86.h
+++ b/vp8/encoder/x86/quantize_x86.h
@@ -24,12 +24,16 @@
#if HAVE_SSE2
extern prototype_quantize_block(vp8_regular_quantize_b_sse2);
+extern prototype_quantize_block(vp8_fast_quantize_b_sse2);
#if !CONFIG_RUNTIME_CPU_DETECT
#undef vp8_quantize_quantb
#define vp8_quantize_quantb vp8_regular_quantize_b_sse2
+#undef vp8_quantize_fastquantb
+#define vp8_quantize_fastquantb vp8_fast_quantize_b_sse2
+
#endif
#endif