Index: source/config/linux/arm-neon-cpu-detect/vp8_rtcd.h |
=================================================================== |
--- source/config/linux/arm-neon-cpu-detect/vp8_rtcd.h (revision 293081) |
+++ source/config/linux/arm-neon-cpu-detect/vp8_rtcd.h (working copy) |
@@ -121,14 +121,9 @@ |
#define vp8_diamond_search_sad vp8_diamond_search_sad_c |
void vp8_fast_quantize_b_c(struct block *, struct blockd *); |
-void vp8_fast_quantize_b_armv6(struct block *, struct blockd *); |
void vp8_fast_quantize_b_neon(struct block *, struct blockd *); |
RTCD_EXTERN void (*vp8_fast_quantize_b)(struct block *, struct blockd *); |
-void vp8_fast_quantize_b_pair_c(struct block *b1, struct block *b2, struct blockd *d1, struct blockd *d2); |
-void vp8_fast_quantize_b_pair_neon(struct block *b1, struct block *b2, struct blockd *d1, struct blockd *d2); |
-RTCD_EXTERN void (*vp8_fast_quantize_b_pair)(struct block *b1, struct block *b2, struct blockd *d1, struct blockd *d2); |
- |
void vp8_filter_by_weight16x16_c(unsigned char *src, int src_stride, unsigned char *dst, int dst_stride, int src_weight); |
#define vp8_filter_by_weight16x16 vp8_filter_by_weight16x16_c |
@@ -215,18 +210,6 @@ |
void vp8_post_proc_down_and_across_mb_row_c(unsigned char *src, unsigned char *dst, int src_pitch, int dst_pitch, int cols, unsigned char *flimits, int size); |
#define vp8_post_proc_down_and_across_mb_row vp8_post_proc_down_and_across_mb_row_c |
-void vp8_quantize_mb_c(struct macroblock *); |
-void vp8_quantize_mb_neon(struct macroblock *); |
-RTCD_EXTERN void (*vp8_quantize_mb)(struct macroblock *); |
- |
-void vp8_quantize_mbuv_c(struct macroblock *); |
-void vp8_quantize_mbuv_neon(struct macroblock *); |
-RTCD_EXTERN void (*vp8_quantize_mbuv)(struct macroblock *); |
- |
-void vp8_quantize_mby_c(struct macroblock *); |
-void vp8_quantize_mby_neon(struct macroblock *); |
-RTCD_EXTERN void (*vp8_quantize_mby)(struct macroblock *); |
- |
int vp8_refining_search_sad_c(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv); |
#define vp8_refining_search_sad vp8_refining_search_sad_c |
@@ -233,9 +216,6 @@ |
void vp8_regular_quantize_b_c(struct block *, struct blockd *); |
#define vp8_regular_quantize_b vp8_regular_quantize_b_c |
-void vp8_regular_quantize_b_pair_c(struct block *b1, struct block *b2, struct blockd *d1, struct blockd *d2); |
-#define vp8_regular_quantize_b_pair vp8_regular_quantize_b_pair_c |
- |
unsigned int vp8_sad16x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad); |
unsigned int vp8_sad16x16_armv6(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad); |
unsigned int vp8_sad16x16_neon(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad); |
@@ -372,17 +352,14 @@ |
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); |
void vp8_subtract_b_c(struct block *be, struct blockd *bd, int pitch); |
-void vp8_subtract_b_armv6(struct block *be, struct blockd *bd, int pitch); |
void vp8_subtract_b_neon(struct block *be, struct blockd *bd, int pitch); |
RTCD_EXTERN void (*vp8_subtract_b)(struct block *be, struct blockd *bd, int pitch); |
void vp8_subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride); |
-void vp8_subtract_mbuv_armv6(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride); |
void vp8_subtract_mbuv_neon(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride); |
RTCD_EXTERN void (*vp8_subtract_mbuv)(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride); |
void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigned char *pred, int pred_stride); |
-void vp8_subtract_mby_armv6(short *diff, unsigned char *src, int src_stride, unsigned char *pred, int pred_stride); |
void vp8_subtract_mby_neon(short *diff, unsigned char *src, int src_stride, unsigned char *pred, int pred_stride); |
RTCD_EXTERN void (*vp8_subtract_mby)(short *diff, unsigned char *src, int src_stride, unsigned char *pred, int pred_stride); |
@@ -466,10 +443,8 @@ |
if (flags & HAS_NEON) vp8_dequant_idct_add_y_block = vp8_dequant_idct_add_y_block_neon; |
vp8_dequantize_b = vp8_dequantize_b_v6; |
if (flags & HAS_NEON) vp8_dequantize_b = vp8_dequantize_b_neon; |
- vp8_fast_quantize_b = vp8_fast_quantize_b_armv6; |
+ vp8_fast_quantize_b = vp8_fast_quantize_b_c; |
if (flags & HAS_NEON) vp8_fast_quantize_b = vp8_fast_quantize_b_neon; |
- vp8_fast_quantize_b_pair = vp8_fast_quantize_b_pair_c; |
- if (flags & HAS_NEON) vp8_fast_quantize_b_pair = vp8_fast_quantize_b_pair_neon; |
vp8_get4x4sse_cs = vp8_get4x4sse_cs_c; |
if (flags & HAS_NEON) vp8_get4x4sse_cs = vp8_get4x4sse_cs_neon; |
vp8_loop_filter_bh = vp8_loop_filter_bh_armv6; |
@@ -490,12 +465,6 @@ |
if (flags & HAS_NEON) vp8_loop_filter_simple_mbv = vp8_loop_filter_mbvs_neon; |
vp8_mse16x16 = vp8_mse16x16_armv6; |
if (flags & HAS_NEON) vp8_mse16x16 = vp8_mse16x16_neon; |
- vp8_quantize_mb = vp8_quantize_mb_c; |
- if (flags & HAS_NEON) vp8_quantize_mb = vp8_quantize_mb_neon; |
- vp8_quantize_mbuv = vp8_quantize_mbuv_c; |
- if (flags & HAS_NEON) vp8_quantize_mbuv = vp8_quantize_mbuv_neon; |
- vp8_quantize_mby = vp8_quantize_mby_c; |
- if (flags & HAS_NEON) vp8_quantize_mby = vp8_quantize_mby_neon; |
vp8_sad16x16 = vp8_sad16x16_armv6; |
if (flags & HAS_NEON) vp8_sad16x16 = vp8_sad16x16_neon; |
vp8_sad16x8 = vp8_sad16x8_c; |
@@ -526,11 +495,11 @@ |
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_armv6; |
+ vp8_subtract_b = vp8_subtract_b_c; |
if (flags & HAS_NEON) vp8_subtract_b = vp8_subtract_b_neon; |
- vp8_subtract_mbuv = vp8_subtract_mbuv_armv6; |
+ vp8_subtract_mbuv = vp8_subtract_mbuv_c; |
if (flags & HAS_NEON) vp8_subtract_mbuv = vp8_subtract_mbuv_neon; |
- vp8_subtract_mby = vp8_subtract_mby_armv6; |
+ vp8_subtract_mby = vp8_subtract_mby_c; |
if (flags & HAS_NEON) vp8_subtract_mby = vp8_subtract_mby_neon; |
vp8_variance16x16 = vp8_variance16x16_armv6; |
if (flags & HAS_NEON) vp8_variance16x16 = vp8_variance16x16_neon; |