| Index: source/config/win/ia32/vp8_rtcd.h
|
| ===================================================================
|
| --- source/config/win/ia32/vp8_rtcd.h (revision 191886)
|
| +++ source/config/win/ia32/vp8_rtcd.h (working copy)
|
| @@ -22,6 +22,10 @@
|
| union int_mv;
|
| struct yv12_buffer_config;
|
|
|
| +void vp8_clear_system_state_c();
|
| +void vpx_reset_mmx_state();
|
| +RTCD_EXTERN void (*vp8_clear_system_state)();
|
| +
|
| void vp8_dequantize_b_c(struct blockd*, short *dqc);
|
| void vp8_dequantize_b_mmx(struct blockd*, short *dqc);
|
| RTCD_EXTERN void (*vp8_dequantize_b)(struct blockd*, short *dqc);
|
| @@ -480,6 +484,9 @@
|
|
|
| (void)flags;
|
|
|
| + vp8_clear_system_state = vp8_clear_system_state_c;
|
| + if (flags & HAS_MMX) vp8_clear_system_state = vpx_reset_mmx_state;
|
| +
|
| vp8_dequantize_b = vp8_dequantize_b_c;
|
| if (flags & HAS_MMX) vp8_dequantize_b = vp8_dequantize_b_mmx;
|
|
|
|
|