| Index: source/config/win/ia32/vp8_rtcd.h
|
| ===================================================================
|
| --- source/config/win/ia32/vp8_rtcd.h (revision 278778)
|
| +++ source/config/win/ia32/vp8_rtcd.h (working copy)
|
| @@ -246,6 +246,7 @@
|
|
|
| void vp8_regular_quantize_b_c(struct block *, struct blockd *);
|
| void vp8_regular_quantize_b_sse2(struct block *, struct blockd *);
|
| +void vp8_regular_quantize_b_sse4_1(struct block *, struct blockd *);
|
| RTCD_EXTERN void (*vp8_regular_quantize_b)(struct block *, struct blockd *);
|
|
|
| void vp8_regular_quantize_b_pair_c(struct block *b1, struct block *b2, struct blockd *d1, struct blockd *d2);
|
| @@ -599,6 +600,7 @@
|
| if (flags & HAS_SSE3) vp8_refining_search_sad = vp8_refining_search_sadx4;
|
| vp8_regular_quantize_b = vp8_regular_quantize_b_c;
|
| if (flags & HAS_SSE2) vp8_regular_quantize_b = vp8_regular_quantize_b_sse2;
|
| + if (flags & HAS_SSE4_1) vp8_regular_quantize_b = vp8_regular_quantize_b_sse4_1;
|
| vp8_sad16x16 = vp8_sad16x16_c;
|
| if (flags & HAS_MMX) vp8_sad16x16 = vp8_sad16x16_mmx;
|
| if (flags & HAS_SSE2) vp8_sad16x16 = vp8_sad16x16_wmt;
|
|
|