Home | History | Annotate | Download | only in arm-neon
      1 // This file is generated. Do not edit.
      2 #ifndef VP8_RTCD_H_
      3 #define VP8_RTCD_H_
      4 
      5 #ifdef RTCD_C
      6 #define RTCD_EXTERN
      7 #else
      8 #define RTCD_EXTERN extern
      9 #endif
     10 
     11 /*
     12  * VP8
     13  */
     14 
     15 struct blockd;
     16 struct macroblockd;
     17 struct loop_filter_info;
     18 
     19 /* Encoder forward decls */
     20 struct block;
     21 struct macroblock;
     22 struct variance_vtable;
     23 union int_mv;
     24 struct yv12_buffer_config;
     25 
     26 #ifdef __cplusplus
     27 extern "C" {
     28 #endif
     29 
     30 void vp8_bilinear_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
     31 void vp8_bilinear_predict16x16_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
     32 #define vp8_bilinear_predict16x16 vp8_bilinear_predict16x16_neon
     33 
     34 void vp8_bilinear_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
     35 void vp8_bilinear_predict4x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
     36 #define vp8_bilinear_predict4x4 vp8_bilinear_predict4x4_neon
     37 
     38 void vp8_bilinear_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
     39 void vp8_bilinear_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
     40 #define vp8_bilinear_predict8x4 vp8_bilinear_predict8x4_neon
     41 
     42 void vp8_bilinear_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
     43 void vp8_bilinear_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
     44 #define vp8_bilinear_predict8x8 vp8_bilinear_predict8x8_neon
     45 
     46 int vp8_block_error_c(short *coeff, short *dqcoeff);
     47 #define vp8_block_error vp8_block_error_c
     48 
     49 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
     50 void vp8_copy_mem16x16_neon(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
     51 #define vp8_copy_mem16x16 vp8_copy_mem16x16_neon
     52 
     53 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
     54 void vp8_copy_mem8x4_neon(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
     55 #define vp8_copy_mem8x4 vp8_copy_mem8x4_neon
     56 
     57 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
     58 void vp8_copy_mem8x8_neon(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
     59 #define vp8_copy_mem8x8 vp8_copy_mem8x8_neon
     60 
     61 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride);
     62 void vp8_dc_only_idct_add_neon(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride);
     63 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_neon
     64 
     65 int vp8_denoiser_filter_c(unsigned char *mc_running_avg_y, int mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising);
     66 int vp8_denoiser_filter_neon(unsigned char *mc_running_avg_y, int mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising);
     67 #define vp8_denoiser_filter vp8_denoiser_filter_neon
     68 
     69 int vp8_denoiser_filter_uv_c(unsigned char *mc_running_avg, int mc_avg_stride, unsigned char *running_avg, int avg_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising);
     70 int vp8_denoiser_filter_uv_neon(unsigned char *mc_running_avg, int mc_avg_stride, unsigned char *running_avg, int avg_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising);
     71 #define vp8_denoiser_filter_uv vp8_denoiser_filter_uv_neon
     72 
     73 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
     74 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, int stride);
     75 #define vp8_dequant_idct_add vp8_dequant_idct_add_neon
     76 
     77 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
     78 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
     79 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_neon
     80 
     81 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
     82 void vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
     83 #define vp8_dequant_idct_add_y_block vp8_dequant_idct_add_y_block_neon
     84 
     85 void vp8_dequantize_b_c(struct blockd*, short *dqc);
     86 void vp8_dequantize_b_neon(struct blockd*, short *dqc);
     87 #define vp8_dequantize_b vp8_dequantize_b_neon
     88 
     89 int vp8_diamond_search_sad_c(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, union int_mv *best_mv, int search_param, int sad_per_bit, int *num00, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv);
     90 #define vp8_diamond_search_sad vp8_diamond_search_sad_c
     91 
     92 void vp8_fast_quantize_b_c(struct block *, struct blockd *);
     93 void vp8_fast_quantize_b_neon(struct block *, struct blockd *);
     94 #define vp8_fast_quantize_b vp8_fast_quantize_b_neon
     95 
     96 int vp8_full_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);
     97 #define vp8_full_search_sad vp8_full_search_sad_c
     98 
     99 void vp8_loop_filter_bh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
    100 void vp8_loop_filter_bh_neon(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
    101 #define vp8_loop_filter_bh vp8_loop_filter_bh_neon
    102 
    103 void vp8_loop_filter_bv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
    104 void vp8_loop_filter_bv_neon(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
    105 #define vp8_loop_filter_bv vp8_loop_filter_bv_neon
    106 
    107 void vp8_loop_filter_mbh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
    108 void vp8_loop_filter_mbh_neon(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
    109 #define vp8_loop_filter_mbh vp8_loop_filter_mbh_neon
    110 
    111 void vp8_loop_filter_mbv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
    112 void vp8_loop_filter_mbv_neon(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
    113 #define vp8_loop_filter_mbv vp8_loop_filter_mbv_neon
    114 
    115 void vp8_loop_filter_bhs_c(unsigned char *y, int ystride, const unsigned char *blimit);
    116 void vp8_loop_filter_bhs_neon(unsigned char *y, int ystride, const unsigned char *blimit);
    117 #define vp8_loop_filter_simple_bh vp8_loop_filter_bhs_neon
    118 
    119 void vp8_loop_filter_bvs_c(unsigned char *y, int ystride, const unsigned char *blimit);
    120 void vp8_loop_filter_bvs_neon(unsigned char *y, int ystride, const unsigned char *blimit);
    121 #define vp8_loop_filter_simple_bv vp8_loop_filter_bvs_neon
    122 
    123 void vp8_loop_filter_simple_horizontal_edge_c(unsigned char *y, int ystride, const unsigned char *blimit);
    124 void vp8_loop_filter_mbhs_neon(unsigned char *y, int ystride, const unsigned char *blimit);
    125 #define vp8_loop_filter_simple_mbh vp8_loop_filter_mbhs_neon
    126 
    127 void vp8_loop_filter_simple_vertical_edge_c(unsigned char *y, int ystride, const unsigned char *blimit);
    128 void vp8_loop_filter_mbvs_neon(unsigned char *y, int ystride, const unsigned char *blimit);
    129 #define vp8_loop_filter_simple_mbv vp8_loop_filter_mbvs_neon
    130 
    131 int vp8_mbblock_error_c(struct macroblock *mb, int dc);
    132 #define vp8_mbblock_error vp8_mbblock_error_c
    133 
    134 int vp8_mbuverror_c(struct macroblock *mb);
    135 #define vp8_mbuverror vp8_mbuverror_c
    136 
    137 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);
    138 #define vp8_refining_search_sad vp8_refining_search_sad_c
    139 
    140 void vp8_regular_quantize_b_c(struct block *, struct blockd *);
    141 #define vp8_regular_quantize_b vp8_regular_quantize_b_c
    142 
    143 void vp8_short_fdct4x4_c(short *input, short *output, int pitch);
    144 void vp8_short_fdct4x4_neon(short *input, short *output, int pitch);
    145 #define vp8_short_fdct4x4 vp8_short_fdct4x4_neon
    146 
    147 void vp8_short_fdct8x4_c(short *input, short *output, int pitch);
    148 void vp8_short_fdct8x4_neon(short *input, short *output, int pitch);
    149 #define vp8_short_fdct8x4 vp8_short_fdct8x4_neon
    150 
    151 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
    152 void vp8_short_idct4x4llm_neon(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
    153 #define vp8_short_idct4x4llm vp8_short_idct4x4llm_neon
    154 
    155 void vp8_short_inv_walsh4x4_c(short *input, short *output);
    156 void vp8_short_inv_walsh4x4_neon(short *input, short *output);
    157 #define vp8_short_inv_walsh4x4 vp8_short_inv_walsh4x4_neon
    158 
    159 void vp8_short_inv_walsh4x4_1_c(short *input, short *output);
    160 #define vp8_short_inv_walsh4x4_1 vp8_short_inv_walsh4x4_1_c
    161 
    162 void vp8_short_walsh4x4_c(short *input, short *output, int pitch);
    163 void vp8_short_walsh4x4_neon(short *input, short *output, int pitch);
    164 #define vp8_short_walsh4x4 vp8_short_walsh4x4_neon
    165 
    166 void vp8_sixtap_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
    167 void vp8_sixtap_predict16x16_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
    168 #define vp8_sixtap_predict16x16 vp8_sixtap_predict16x16_neon
    169 
    170 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
    171 void vp8_sixtap_predict4x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
    172 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_neon
    173 
    174 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
    175 void vp8_sixtap_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
    176 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_neon
    177 
    178 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
    179 void vp8_sixtap_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
    180 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_neon
    181 
    182 void vp8_rtcd(void);
    183 
    184 #include "vpx_config.h"
    185 
    186 #ifdef RTCD_C
    187 #include "vpx_ports/arm.h"
    188 static void setup_rtcd_internal(void)
    189 {
    190     int flags = arm_cpu_caps();
    191 
    192     (void)flags;
    193 
    194 }
    195 #endif
    196 
    197 #ifdef __cplusplus
    198 }  // extern "C"
    199 #endif
    200 
    201 #endif
    202