| Index: source/config/mac/ia32/vp8_rtcd.h
|
| ===================================================================
|
| --- source/config/mac/ia32/vp8_rtcd.h (revision 191025)
|
| +++ source/config/mac/ia32/vp8_rtcd.h (working copy)
|
| @@ -1,5 +1,5 @@
|
| -#ifndef VP__RTCD_
|
| -#define VP__RTCD_
|
| +#ifndef VP8_RTCD_H_
|
| +#define VP8_RTCD_H_
|
|
|
| #ifdef RTCD_C
|
| #define RTCD_EXTERN
|
| @@ -398,7 +398,6 @@
|
|
|
| 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(struct block *, struct blockd *);
|
| RTCD_EXTERN void (*vp8_regular_quantize_b)(struct block *, struct blockd *);
|
|
|
| void vp8_fast_quantize_b_c(struct block *, struct blockd *);
|
| @@ -770,7 +769,6 @@
|
|
|
| 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;
|
|
|
| vp8_fast_quantize_b = vp8_fast_quantize_b_c;
|
| if (flags & HAS_SSE2) vp8_fast_quantize_b = vp8_fast_quantize_b_sse2;
|
|
|