| Index: source/config/linux/arm-neon-cpu-detect/vp8_rtcd.h
|
| diff --git a/source/config/linux/arm-neon-cpu-detect/vp8_rtcd.h b/source/config/linux/arm-neon-cpu-detect/vp8_rtcd.h
|
| index 34ed1c4d6a42a95760128b2200bfc26815752fbd..16cd808528c1e313590fd1b0699038d69f5413ab 100644
|
| --- a/source/config/linux/arm-neon-cpu-detect/vp8_rtcd.h
|
| +++ b/source/config/linux/arm-neon-cpu-detect/vp8_rtcd.h
|
| @@ -33,8 +33,7 @@ RTCD_EXTERN void (*vp8_bilinear_predict16x16)(unsigned char *src, int src_pitch,
|
|
|
| void vp8_bilinear_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
|
| void vp8_bilinear_predict4x4_armv6(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
|
| -void vp8_bilinear_predict4x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
|
| -RTCD_EXTERN void (*vp8_bilinear_predict4x4)(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
|
| +#define vp8_bilinear_predict4x4 vp8_bilinear_predict4x4_armv6
|
|
|
| void vp8_bilinear_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
|
| void vp8_bilinear_predict8x4_armv6(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
|
| @@ -251,9 +250,6 @@ void vp8_sixtap_predict8x8_armv6(unsigned char *src, int src_pitch, int xofst, i
|
| void vp8_sixtap_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
|
| RTCD_EXTERN void (*vp8_sixtap_predict8x8)(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
|
|
|
| -unsigned int vp8_sub_pixel_mse16x16_c(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
|
| -#define vp8_sub_pixel_mse16x16 vp8_sub_pixel_mse16x16_c
|
| -
|
| unsigned int vp8_sub_pixel_variance16x16_c(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
|
| unsigned int vp8_sub_pixel_variance16x16_armv6(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
|
| unsigned int vp8_sub_pixel_variance16x16_neon(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
|
| @@ -270,8 +266,7 @@ unsigned int vp8_sub_pixel_variance8x16_c(const unsigned char *src_ptr, int so
|
|
|
| unsigned int vp8_sub_pixel_variance8x8_c(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
|
| unsigned int vp8_sub_pixel_variance8x8_armv6(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
|
| -unsigned int vp8_sub_pixel_variance8x8_neon(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
|
| -RTCD_EXTERN unsigned int (*vp8_sub_pixel_variance8x8)(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
|
| +#define vp8_sub_pixel_variance8x8 vp8_sub_pixel_variance8x8_armv6
|
|
|
| void vp8_subtract_b_c(struct block *be, struct blockd *bd, int pitch);
|
| void vp8_subtract_b_neon(struct block *be, struct blockd *bd, int pitch);
|
| @@ -314,8 +309,6 @@ static void setup_rtcd_internal(void)
|
|
|
| vp8_bilinear_predict16x16 = vp8_bilinear_predict16x16_armv6;
|
| if (flags & HAS_NEON) vp8_bilinear_predict16x16 = vp8_bilinear_predict16x16_neon;
|
| - vp8_bilinear_predict4x4 = vp8_bilinear_predict4x4_armv6;
|
| - if (flags & HAS_NEON) vp8_bilinear_predict4x4 = vp8_bilinear_predict4x4_neon;
|
| vp8_bilinear_predict8x4 = vp8_bilinear_predict8x4_armv6;
|
| if (flags & HAS_NEON) vp8_bilinear_predict8x4 = vp8_bilinear_predict8x4_neon;
|
| vp8_bilinear_predict8x8 = vp8_bilinear_predict8x8_armv6;
|
| @@ -380,8 +373,6 @@ static void setup_rtcd_internal(void)
|
| if (flags & HAS_NEON) vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_neon;
|
| vp8_sub_pixel_variance16x16 = vp8_sub_pixel_variance16x16_armv6;
|
| if (flags & HAS_NEON) vp8_sub_pixel_variance16x16 = vp8_sub_pixel_variance16x16_neon;
|
| - vp8_sub_pixel_variance8x8 = vp8_sub_pixel_variance8x8_armv6;
|
| - if (flags & HAS_NEON) vp8_sub_pixel_variance8x8 = vp8_sub_pixel_variance8x8_neon;
|
| vp8_subtract_b = vp8_subtract_b_c;
|
| if (flags & HAS_NEON) vp8_subtract_b = vp8_subtract_b_neon;
|
| vp8_subtract_mbuv = vp8_subtract_mbuv_c;
|
|
|