media/libvpx/vp9_rtcd_generic-gnu.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/media/libvpx/vp9_rtcd_generic-gnu.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,678 @@
     1.4 +#ifndef VP9_RTCD_H_
     1.5 +#define VP9_RTCD_H_
     1.6 +
     1.7 +#ifdef RTCD_C
     1.8 +#define RTCD_EXTERN
     1.9 +#else
    1.10 +#define RTCD_EXTERN extern
    1.11 +#endif
    1.12 +
    1.13 +/*
    1.14 + * VP9
    1.15 + */
    1.16 +
    1.17 +#include "vpx/vpx_integer.h"
    1.18 +#include "vp9/common/vp9_enums.h"
    1.19 +
    1.20 +struct macroblockd;
    1.21 +
    1.22 +/* Encoder forward decls */
    1.23 +struct macroblock;
    1.24 +struct vp9_variance_vtable;
    1.25 +
    1.26 +#define DEC_MVCOSTS int *mvjcost, int *mvcost[2]
    1.27 +union int_mv;
    1.28 +struct yv12_buffer_config;
    1.29 +
    1.30 +void vp9_d207_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.31 +#define vp9_d207_predictor_4x4 vp9_d207_predictor_4x4_c
    1.32 +
    1.33 +void vp9_d45_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.34 +#define vp9_d45_predictor_4x4 vp9_d45_predictor_4x4_c
    1.35 +
    1.36 +void vp9_d63_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.37 +#define vp9_d63_predictor_4x4 vp9_d63_predictor_4x4_c
    1.38 +
    1.39 +void vp9_h_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.40 +#define vp9_h_predictor_4x4 vp9_h_predictor_4x4_c
    1.41 +
    1.42 +void vp9_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.43 +#define vp9_d117_predictor_4x4 vp9_d117_predictor_4x4_c
    1.44 +
    1.45 +void vp9_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.46 +#define vp9_d135_predictor_4x4 vp9_d135_predictor_4x4_c
    1.47 +
    1.48 +void vp9_d153_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.49 +#define vp9_d153_predictor_4x4 vp9_d153_predictor_4x4_c
    1.50 +
    1.51 +void vp9_v_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.52 +#define vp9_v_predictor_4x4 vp9_v_predictor_4x4_c
    1.53 +
    1.54 +void vp9_tm_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.55 +#define vp9_tm_predictor_4x4 vp9_tm_predictor_4x4_c
    1.56 +
    1.57 +void vp9_dc_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.58 +#define vp9_dc_predictor_4x4 vp9_dc_predictor_4x4_c
    1.59 +
    1.60 +void vp9_dc_top_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.61 +#define vp9_dc_top_predictor_4x4 vp9_dc_top_predictor_4x4_c
    1.62 +
    1.63 +void vp9_dc_left_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.64 +#define vp9_dc_left_predictor_4x4 vp9_dc_left_predictor_4x4_c
    1.65 +
    1.66 +void vp9_dc_128_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.67 +#define vp9_dc_128_predictor_4x4 vp9_dc_128_predictor_4x4_c
    1.68 +
    1.69 +void vp9_d207_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.70 +#define vp9_d207_predictor_8x8 vp9_d207_predictor_8x8_c
    1.71 +
    1.72 +void vp9_d45_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.73 +#define vp9_d45_predictor_8x8 vp9_d45_predictor_8x8_c
    1.74 +
    1.75 +void vp9_d63_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.76 +#define vp9_d63_predictor_8x8 vp9_d63_predictor_8x8_c
    1.77 +
    1.78 +void vp9_h_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.79 +#define vp9_h_predictor_8x8 vp9_h_predictor_8x8_c
    1.80 +
    1.81 +void vp9_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.82 +#define vp9_d117_predictor_8x8 vp9_d117_predictor_8x8_c
    1.83 +
    1.84 +void vp9_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.85 +#define vp9_d135_predictor_8x8 vp9_d135_predictor_8x8_c
    1.86 +
    1.87 +void vp9_d153_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.88 +#define vp9_d153_predictor_8x8 vp9_d153_predictor_8x8_c
    1.89 +
    1.90 +void vp9_v_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.91 +#define vp9_v_predictor_8x8 vp9_v_predictor_8x8_c
    1.92 +
    1.93 +void vp9_tm_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.94 +#define vp9_tm_predictor_8x8 vp9_tm_predictor_8x8_c
    1.95 +
    1.96 +void vp9_dc_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    1.97 +#define vp9_dc_predictor_8x8 vp9_dc_predictor_8x8_c
    1.98 +
    1.99 +void vp9_dc_top_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.100 +#define vp9_dc_top_predictor_8x8 vp9_dc_top_predictor_8x8_c
   1.101 +
   1.102 +void vp9_dc_left_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.103 +#define vp9_dc_left_predictor_8x8 vp9_dc_left_predictor_8x8_c
   1.104 +
   1.105 +void vp9_dc_128_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.106 +#define vp9_dc_128_predictor_8x8 vp9_dc_128_predictor_8x8_c
   1.107 +
   1.108 +void vp9_d207_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.109 +#define vp9_d207_predictor_16x16 vp9_d207_predictor_16x16_c
   1.110 +
   1.111 +void vp9_d45_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.112 +#define vp9_d45_predictor_16x16 vp9_d45_predictor_16x16_c
   1.113 +
   1.114 +void vp9_d63_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.115 +#define vp9_d63_predictor_16x16 vp9_d63_predictor_16x16_c
   1.116 +
   1.117 +void vp9_h_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.118 +#define vp9_h_predictor_16x16 vp9_h_predictor_16x16_c
   1.119 +
   1.120 +void vp9_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.121 +#define vp9_d117_predictor_16x16 vp9_d117_predictor_16x16_c
   1.122 +
   1.123 +void vp9_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.124 +#define vp9_d135_predictor_16x16 vp9_d135_predictor_16x16_c
   1.125 +
   1.126 +void vp9_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.127 +#define vp9_d153_predictor_16x16 vp9_d153_predictor_16x16_c
   1.128 +
   1.129 +void vp9_v_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.130 +#define vp9_v_predictor_16x16 vp9_v_predictor_16x16_c
   1.131 +
   1.132 +void vp9_tm_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.133 +#define vp9_tm_predictor_16x16 vp9_tm_predictor_16x16_c
   1.134 +
   1.135 +void vp9_dc_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.136 +#define vp9_dc_predictor_16x16 vp9_dc_predictor_16x16_c
   1.137 +
   1.138 +void vp9_dc_top_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.139 +#define vp9_dc_top_predictor_16x16 vp9_dc_top_predictor_16x16_c
   1.140 +
   1.141 +void vp9_dc_left_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.142 +#define vp9_dc_left_predictor_16x16 vp9_dc_left_predictor_16x16_c
   1.143 +
   1.144 +void vp9_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.145 +#define vp9_dc_128_predictor_16x16 vp9_dc_128_predictor_16x16_c
   1.146 +
   1.147 +void vp9_d207_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.148 +#define vp9_d207_predictor_32x32 vp9_d207_predictor_32x32_c
   1.149 +
   1.150 +void vp9_d45_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.151 +#define vp9_d45_predictor_32x32 vp9_d45_predictor_32x32_c
   1.152 +
   1.153 +void vp9_d63_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.154 +#define vp9_d63_predictor_32x32 vp9_d63_predictor_32x32_c
   1.155 +
   1.156 +void vp9_h_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.157 +#define vp9_h_predictor_32x32 vp9_h_predictor_32x32_c
   1.158 +
   1.159 +void vp9_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.160 +#define vp9_d117_predictor_32x32 vp9_d117_predictor_32x32_c
   1.161 +
   1.162 +void vp9_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.163 +#define vp9_d135_predictor_32x32 vp9_d135_predictor_32x32_c
   1.164 +
   1.165 +void vp9_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.166 +#define vp9_d153_predictor_32x32 vp9_d153_predictor_32x32_c
   1.167 +
   1.168 +void vp9_v_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.169 +#define vp9_v_predictor_32x32 vp9_v_predictor_32x32_c
   1.170 +
   1.171 +void vp9_tm_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.172 +#define vp9_tm_predictor_32x32 vp9_tm_predictor_32x32_c
   1.173 +
   1.174 +void vp9_dc_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.175 +#define vp9_dc_predictor_32x32 vp9_dc_predictor_32x32_c
   1.176 +
   1.177 +void vp9_dc_top_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.178 +#define vp9_dc_top_predictor_32x32 vp9_dc_top_predictor_32x32_c
   1.179 +
   1.180 +void vp9_dc_left_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.181 +#define vp9_dc_left_predictor_32x32 vp9_dc_left_predictor_32x32_c
   1.182 +
   1.183 +void vp9_dc_128_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
   1.184 +#define vp9_dc_128_predictor_32x32 vp9_dc_128_predictor_32x32_c
   1.185 +
   1.186 +void vp9_mb_lpf_vertical_edge_w_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh);
   1.187 +#define vp9_mb_lpf_vertical_edge_w vp9_mb_lpf_vertical_edge_w_c
   1.188 +
   1.189 +void vp9_mbloop_filter_vertical_edge_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
   1.190 +#define vp9_mbloop_filter_vertical_edge vp9_mbloop_filter_vertical_edge_c
   1.191 +
   1.192 +void vp9_loop_filter_vertical_edge_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
   1.193 +#define vp9_loop_filter_vertical_edge vp9_loop_filter_vertical_edge_c
   1.194 +
   1.195 +void vp9_mb_lpf_horizontal_edge_w_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
   1.196 +#define vp9_mb_lpf_horizontal_edge_w vp9_mb_lpf_horizontal_edge_w_c
   1.197 +
   1.198 +void vp9_mbloop_filter_horizontal_edge_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
   1.199 +#define vp9_mbloop_filter_horizontal_edge vp9_mbloop_filter_horizontal_edge_c
   1.200 +
   1.201 +void vp9_loop_filter_horizontal_edge_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
   1.202 +#define vp9_loop_filter_horizontal_edge vp9_loop_filter_horizontal_edge_c
   1.203 +
   1.204 +void vp9_blend_mb_inner_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
   1.205 +#define vp9_blend_mb_inner vp9_blend_mb_inner_c
   1.206 +
   1.207 +void vp9_blend_mb_outer_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
   1.208 +#define vp9_blend_mb_outer vp9_blend_mb_outer_c
   1.209 +
   1.210 +void vp9_blend_b_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
   1.211 +#define vp9_blend_b vp9_blend_b_c
   1.212 +
   1.213 +void vp9_convolve_copy_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
   1.214 +#define vp9_convolve_copy vp9_convolve_copy_c
   1.215 +
   1.216 +void vp9_convolve_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
   1.217 +#define vp9_convolve_avg vp9_convolve_avg_c
   1.218 +
   1.219 +void vp9_convolve8_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
   1.220 +#define vp9_convolve8 vp9_convolve8_c
   1.221 +
   1.222 +void vp9_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
   1.223 +#define vp9_convolve8_horiz vp9_convolve8_horiz_c
   1.224 +
   1.225 +void vp9_convolve8_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
   1.226 +#define vp9_convolve8_vert vp9_convolve8_vert_c
   1.227 +
   1.228 +void vp9_convolve8_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
   1.229 +#define vp9_convolve8_avg vp9_convolve8_avg_c
   1.230 +
   1.231 +void vp9_convolve8_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
   1.232 +#define vp9_convolve8_avg_horiz vp9_convolve8_avg_horiz_c
   1.233 +
   1.234 +void vp9_convolve8_avg_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
   1.235 +#define vp9_convolve8_avg_vert vp9_convolve8_avg_vert_c
   1.236 +
   1.237 +void vp9_idct4x4_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.238 +#define vp9_idct4x4_1_add vp9_idct4x4_1_add_c
   1.239 +
   1.240 +void vp9_idct4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.241 +#define vp9_idct4x4_16_add vp9_idct4x4_16_add_c
   1.242 +
   1.243 +void vp9_idct8x8_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.244 +#define vp9_idct8x8_1_add vp9_idct8x8_1_add_c
   1.245 +
   1.246 +void vp9_idct8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.247 +#define vp9_idct8x8_64_add vp9_idct8x8_64_add_c
   1.248 +
   1.249 +void vp9_idct8x8_10_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.250 +#define vp9_idct8x8_10_add vp9_idct8x8_10_add_c
   1.251 +
   1.252 +void vp9_idct16x16_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.253 +#define vp9_idct16x16_1_add vp9_idct16x16_1_add_c
   1.254 +
   1.255 +void vp9_idct16x16_256_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.256 +#define vp9_idct16x16_256_add vp9_idct16x16_256_add_c
   1.257 +
   1.258 +void vp9_idct16x16_10_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.259 +#define vp9_idct16x16_10_add vp9_idct16x16_10_add_c
   1.260 +
   1.261 +void vp9_idct32x32_1024_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.262 +#define vp9_idct32x32_1024_add vp9_idct32x32_1024_add_c
   1.263 +
   1.264 +void vp9_idct32x32_34_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.265 +#define vp9_idct32x32_34_add vp9_idct32x32_34_add_c
   1.266 +
   1.267 +void vp9_idct32x32_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.268 +#define vp9_idct32x32_1_add vp9_idct32x32_1_add_c
   1.269 +
   1.270 +void vp9_iht4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
   1.271 +#define vp9_iht4x4_16_add vp9_iht4x4_16_add_c
   1.272 +
   1.273 +void vp9_iht8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
   1.274 +#define vp9_iht8x8_64_add vp9_iht8x8_64_add_c
   1.275 +
   1.276 +void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, int tx_type);
   1.277 +#define vp9_iht16x16_256_add vp9_iht16x16_256_add_c
   1.278 +
   1.279 +void vp9_iwht4x4_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.280 +#define vp9_iwht4x4_1_add vp9_iwht4x4_1_add_c
   1.281 +
   1.282 +void vp9_iwht4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
   1.283 +#define vp9_iwht4x4_16_add vp9_iwht4x4_16_add_c
   1.284 +
   1.285 +unsigned int vp9_variance32x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.286 +#define vp9_variance32x16 vp9_variance32x16_c
   1.287 +
   1.288 +unsigned int vp9_variance16x32_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.289 +#define vp9_variance16x32 vp9_variance16x32_c
   1.290 +
   1.291 +unsigned int vp9_variance64x32_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.292 +#define vp9_variance64x32 vp9_variance64x32_c
   1.293 +
   1.294 +unsigned int vp9_variance32x64_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.295 +#define vp9_variance32x64 vp9_variance32x64_c
   1.296 +
   1.297 +unsigned int vp9_variance32x32_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.298 +#define vp9_variance32x32 vp9_variance32x32_c
   1.299 +
   1.300 +unsigned int vp9_variance64x64_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.301 +#define vp9_variance64x64 vp9_variance64x64_c
   1.302 +
   1.303 +unsigned int vp9_variance16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.304 +#define vp9_variance16x16 vp9_variance16x16_c
   1.305 +
   1.306 +unsigned int vp9_variance16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.307 +#define vp9_variance16x8 vp9_variance16x8_c
   1.308 +
   1.309 +unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.310 +#define vp9_variance8x16 vp9_variance8x16_c
   1.311 +
   1.312 +unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.313 +#define vp9_variance8x8 vp9_variance8x8_c
   1.314 +
   1.315 +void vp9_get_sse_sum_8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
   1.316 +#define vp9_get_sse_sum_8x8 vp9_get_sse_sum_8x8_c
   1.317 +
   1.318 +unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.319 +#define vp9_variance8x4 vp9_variance8x4_c
   1.320 +
   1.321 +unsigned int vp9_variance4x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.322 +#define vp9_variance4x8 vp9_variance4x8_c
   1.323 +
   1.324 +unsigned int vp9_variance4x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.325 +#define vp9_variance4x4 vp9_variance4x4_c
   1.326 +
   1.327 +unsigned int vp9_sub_pixel_variance64x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.328 +#define vp9_sub_pixel_variance64x64 vp9_sub_pixel_variance64x64_c
   1.329 +
   1.330 +unsigned int vp9_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.331 +#define vp9_sub_pixel_avg_variance64x64 vp9_sub_pixel_avg_variance64x64_c
   1.332 +
   1.333 +unsigned int vp9_sub_pixel_variance32x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.334 +#define vp9_sub_pixel_variance32x64 vp9_sub_pixel_variance32x64_c
   1.335 +
   1.336 +unsigned int vp9_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.337 +#define vp9_sub_pixel_avg_variance32x64 vp9_sub_pixel_avg_variance32x64_c
   1.338 +
   1.339 +unsigned int vp9_sub_pixel_variance64x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.340 +#define vp9_sub_pixel_variance64x32 vp9_sub_pixel_variance64x32_c
   1.341 +
   1.342 +unsigned int vp9_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.343 +#define vp9_sub_pixel_avg_variance64x32 vp9_sub_pixel_avg_variance64x32_c
   1.344 +
   1.345 +unsigned int vp9_sub_pixel_variance32x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.346 +#define vp9_sub_pixel_variance32x16 vp9_sub_pixel_variance32x16_c
   1.347 +
   1.348 +unsigned int vp9_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.349 +#define vp9_sub_pixel_avg_variance32x16 vp9_sub_pixel_avg_variance32x16_c
   1.350 +
   1.351 +unsigned int vp9_sub_pixel_variance16x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.352 +#define vp9_sub_pixel_variance16x32 vp9_sub_pixel_variance16x32_c
   1.353 +
   1.354 +unsigned int vp9_sub_pixel_avg_variance16x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.355 +#define vp9_sub_pixel_avg_variance16x32 vp9_sub_pixel_avg_variance16x32_c
   1.356 +
   1.357 +unsigned int vp9_sub_pixel_variance32x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.358 +#define vp9_sub_pixel_variance32x32 vp9_sub_pixel_variance32x32_c
   1.359 +
   1.360 +unsigned int vp9_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.361 +#define vp9_sub_pixel_avg_variance32x32 vp9_sub_pixel_avg_variance32x32_c
   1.362 +
   1.363 +unsigned int vp9_sub_pixel_variance16x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.364 +#define vp9_sub_pixel_variance16x16 vp9_sub_pixel_variance16x16_c
   1.365 +
   1.366 +unsigned int vp9_sub_pixel_avg_variance16x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.367 +#define vp9_sub_pixel_avg_variance16x16 vp9_sub_pixel_avg_variance16x16_c
   1.368 +
   1.369 +unsigned int vp9_sub_pixel_variance8x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.370 +#define vp9_sub_pixel_variance8x16 vp9_sub_pixel_variance8x16_c
   1.371 +
   1.372 +unsigned int vp9_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.373 +#define vp9_sub_pixel_avg_variance8x16 vp9_sub_pixel_avg_variance8x16_c
   1.374 +
   1.375 +unsigned int vp9_sub_pixel_variance16x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.376 +#define vp9_sub_pixel_variance16x8 vp9_sub_pixel_variance16x8_c
   1.377 +
   1.378 +unsigned int vp9_sub_pixel_avg_variance16x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.379 +#define vp9_sub_pixel_avg_variance16x8 vp9_sub_pixel_avg_variance16x8_c
   1.380 +
   1.381 +unsigned int vp9_sub_pixel_variance8x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.382 +#define vp9_sub_pixel_variance8x8 vp9_sub_pixel_variance8x8_c
   1.383 +
   1.384 +unsigned int vp9_sub_pixel_avg_variance8x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.385 +#define vp9_sub_pixel_avg_variance8x8 vp9_sub_pixel_avg_variance8x8_c
   1.386 +
   1.387 +unsigned int vp9_sub_pixel_variance8x4_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.388 +#define vp9_sub_pixel_variance8x4 vp9_sub_pixel_variance8x4_c
   1.389 +
   1.390 +unsigned int vp9_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.391 +#define vp9_sub_pixel_avg_variance8x4 vp9_sub_pixel_avg_variance8x4_c
   1.392 +
   1.393 +unsigned int vp9_sub_pixel_variance4x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.394 +#define vp9_sub_pixel_variance4x8 vp9_sub_pixel_variance4x8_c
   1.395 +
   1.396 +unsigned int vp9_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.397 +#define vp9_sub_pixel_avg_variance4x8 vp9_sub_pixel_avg_variance4x8_c
   1.398 +
   1.399 +unsigned int vp9_sub_pixel_variance4x4_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.400 +#define vp9_sub_pixel_variance4x4 vp9_sub_pixel_variance4x4_c
   1.401 +
   1.402 +unsigned int vp9_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr, int source_stride, int xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, const uint8_t *second_pred);
   1.403 +#define vp9_sub_pixel_avg_variance4x4 vp9_sub_pixel_avg_variance4x4_c
   1.404 +
   1.405 +unsigned int vp9_sad64x64_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int max_sad);
   1.406 +#define vp9_sad64x64 vp9_sad64x64_c
   1.407 +
   1.408 +unsigned int vp9_sad32x64_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int max_sad);
   1.409 +#define vp9_sad32x64 vp9_sad32x64_c
   1.410 +
   1.411 +unsigned int vp9_sad64x32_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int max_sad);
   1.412 +#define vp9_sad64x32 vp9_sad64x32_c
   1.413 +
   1.414 +unsigned int vp9_sad32x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int max_sad);
   1.415 +#define vp9_sad32x16 vp9_sad32x16_c
   1.416 +
   1.417 +unsigned int vp9_sad16x32_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int max_sad);
   1.418 +#define vp9_sad16x32 vp9_sad16x32_c
   1.419 +
   1.420 +unsigned int vp9_sad32x32_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int max_sad);
   1.421 +#define vp9_sad32x32 vp9_sad32x32_c
   1.422 +
   1.423 +unsigned int vp9_sad16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int max_sad);
   1.424 +#define vp9_sad16x16 vp9_sad16x16_c
   1.425 +
   1.426 +unsigned int vp9_sad16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int max_sad);
   1.427 +#define vp9_sad16x8 vp9_sad16x8_c
   1.428 +
   1.429 +unsigned int vp9_sad8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int max_sad);
   1.430 +#define vp9_sad8x16 vp9_sad8x16_c
   1.431 +
   1.432 +unsigned int vp9_sad8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int max_sad);
   1.433 +#define vp9_sad8x8 vp9_sad8x8_c
   1.434 +
   1.435 +unsigned int vp9_sad8x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int max_sad);
   1.436 +#define vp9_sad8x4 vp9_sad8x4_c
   1.437 +
   1.438 +unsigned int vp9_sad4x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int max_sad);
   1.439 +#define vp9_sad4x8 vp9_sad4x8_c
   1.440 +
   1.441 +unsigned int vp9_sad4x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int max_sad);
   1.442 +#define vp9_sad4x4 vp9_sad4x4_c
   1.443 +
   1.444 +unsigned int vp9_sad64x64_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.445 +#define vp9_sad64x64_avg vp9_sad64x64_avg_c
   1.446 +
   1.447 +unsigned int vp9_sad32x64_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.448 +#define vp9_sad32x64_avg vp9_sad32x64_avg_c
   1.449 +
   1.450 +unsigned int vp9_sad64x32_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.451 +#define vp9_sad64x32_avg vp9_sad64x32_avg_c
   1.452 +
   1.453 +unsigned int vp9_sad32x16_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.454 +#define vp9_sad32x16_avg vp9_sad32x16_avg_c
   1.455 +
   1.456 +unsigned int vp9_sad16x32_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.457 +#define vp9_sad16x32_avg vp9_sad16x32_avg_c
   1.458 +
   1.459 +unsigned int vp9_sad32x32_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.460 +#define vp9_sad32x32_avg vp9_sad32x32_avg_c
   1.461 +
   1.462 +unsigned int vp9_sad16x16_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.463 +#define vp9_sad16x16_avg vp9_sad16x16_avg_c
   1.464 +
   1.465 +unsigned int vp9_sad16x8_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.466 +#define vp9_sad16x8_avg vp9_sad16x8_avg_c
   1.467 +
   1.468 +unsigned int vp9_sad8x16_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.469 +#define vp9_sad8x16_avg vp9_sad8x16_avg_c
   1.470 +
   1.471 +unsigned int vp9_sad8x8_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.472 +#define vp9_sad8x8_avg vp9_sad8x8_avg_c
   1.473 +
   1.474 +unsigned int vp9_sad8x4_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.475 +#define vp9_sad8x4_avg vp9_sad8x4_avg_c
   1.476 +
   1.477 +unsigned int vp9_sad4x8_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.478 +#define vp9_sad4x8_avg vp9_sad4x8_avg_c
   1.479 +
   1.480 +unsigned int vp9_sad4x4_avg_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, const uint8_t *second_pred, unsigned int max_sad);
   1.481 +#define vp9_sad4x4_avg vp9_sad4x4_avg_c
   1.482 +
   1.483 +unsigned int vp9_variance_halfpixvar16x16_h_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.484 +#define vp9_variance_halfpixvar16x16_h vp9_variance_halfpixvar16x16_h_c
   1.485 +
   1.486 +unsigned int vp9_variance_halfpixvar16x16_v_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.487 +#define vp9_variance_halfpixvar16x16_v vp9_variance_halfpixvar16x16_v_c
   1.488 +
   1.489 +unsigned int vp9_variance_halfpixvar16x16_hv_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.490 +#define vp9_variance_halfpixvar16x16_hv vp9_variance_halfpixvar16x16_hv_c
   1.491 +
   1.492 +unsigned int vp9_variance_halfpixvar64x64_h_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.493 +#define vp9_variance_halfpixvar64x64_h vp9_variance_halfpixvar64x64_h_c
   1.494 +
   1.495 +unsigned int vp9_variance_halfpixvar64x64_v_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.496 +#define vp9_variance_halfpixvar64x64_v vp9_variance_halfpixvar64x64_v_c
   1.497 +
   1.498 +unsigned int vp9_variance_halfpixvar64x64_hv_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.499 +#define vp9_variance_halfpixvar64x64_hv vp9_variance_halfpixvar64x64_hv_c
   1.500 +
   1.501 +unsigned int vp9_variance_halfpixvar32x32_h_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.502 +#define vp9_variance_halfpixvar32x32_h vp9_variance_halfpixvar32x32_h_c
   1.503 +
   1.504 +unsigned int vp9_variance_halfpixvar32x32_v_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.505 +#define vp9_variance_halfpixvar32x32_v vp9_variance_halfpixvar32x32_v_c
   1.506 +
   1.507 +unsigned int vp9_variance_halfpixvar32x32_hv_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.508 +#define vp9_variance_halfpixvar32x32_hv vp9_variance_halfpixvar32x32_hv_c
   1.509 +
   1.510 +void vp9_sad64x64x3_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int *sad_array);
   1.511 +#define vp9_sad64x64x3 vp9_sad64x64x3_c
   1.512 +
   1.513 +void vp9_sad32x32x3_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int *sad_array);
   1.514 +#define vp9_sad32x32x3 vp9_sad32x32x3_c
   1.515 +
   1.516 +void vp9_sad16x16x3_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int *sad_array);
   1.517 +#define vp9_sad16x16x3 vp9_sad16x16x3_c
   1.518 +
   1.519 +void vp9_sad16x8x3_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int *sad_array);
   1.520 +#define vp9_sad16x8x3 vp9_sad16x8x3_c
   1.521 +
   1.522 +void vp9_sad8x16x3_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int *sad_array);
   1.523 +#define vp9_sad8x16x3 vp9_sad8x16x3_c
   1.524 +
   1.525 +void vp9_sad8x8x3_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int *sad_array);
   1.526 +#define vp9_sad8x8x3 vp9_sad8x8x3_c
   1.527 +
   1.528 +void vp9_sad4x4x3_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int  ref_stride, unsigned int *sad_array);
   1.529 +#define vp9_sad4x4x3 vp9_sad4x4x3_c
   1.530 +
   1.531 +void vp9_sad64x64x8_c(const uint8_t *src_ptr, int  src_stride, const uint8_t *ref_ptr, int  ref_stride, uint32_t *sad_array);
   1.532 +#define vp9_sad64x64x8 vp9_sad64x64x8_c
   1.533 +
   1.534 +void vp9_sad32x32x8_c(const uint8_t *src_ptr, int  src_stride, const uint8_t *ref_ptr, int  ref_stride, uint32_t *sad_array);
   1.535 +#define vp9_sad32x32x8 vp9_sad32x32x8_c
   1.536 +
   1.537 +void vp9_sad16x16x8_c(const uint8_t *src_ptr, int  src_stride, const uint8_t *ref_ptr, int  ref_stride, uint32_t *sad_array);
   1.538 +#define vp9_sad16x16x8 vp9_sad16x16x8_c
   1.539 +
   1.540 +void vp9_sad16x8x8_c(const uint8_t *src_ptr, int  src_stride, const uint8_t *ref_ptr, int  ref_stride, uint32_t *sad_array);
   1.541 +#define vp9_sad16x8x8 vp9_sad16x8x8_c
   1.542 +
   1.543 +void vp9_sad8x16x8_c(const uint8_t *src_ptr, int  src_stride, const uint8_t *ref_ptr, int  ref_stride, uint32_t *sad_array);
   1.544 +#define vp9_sad8x16x8 vp9_sad8x16x8_c
   1.545 +
   1.546 +void vp9_sad8x8x8_c(const uint8_t *src_ptr, int  src_stride, const uint8_t *ref_ptr, int  ref_stride, uint32_t *sad_array);
   1.547 +#define vp9_sad8x8x8 vp9_sad8x8x8_c
   1.548 +
   1.549 +void vp9_sad8x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
   1.550 +#define vp9_sad8x4x8 vp9_sad8x4x8_c
   1.551 +
   1.552 +void vp9_sad4x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
   1.553 +#define vp9_sad4x8x8 vp9_sad4x8x8_c
   1.554 +
   1.555 +void vp9_sad4x4x8_c(const uint8_t *src_ptr, int  src_stride, const uint8_t *ref_ptr, int  ref_stride, uint32_t *sad_array);
   1.556 +#define vp9_sad4x4x8 vp9_sad4x4x8_c
   1.557 +
   1.558 +void vp9_sad64x64x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.559 +#define vp9_sad64x64x4d vp9_sad64x64x4d_c
   1.560 +
   1.561 +void vp9_sad32x64x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.562 +#define vp9_sad32x64x4d vp9_sad32x64x4d_c
   1.563 +
   1.564 +void vp9_sad64x32x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.565 +#define vp9_sad64x32x4d vp9_sad64x32x4d_c
   1.566 +
   1.567 +void vp9_sad32x16x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.568 +#define vp9_sad32x16x4d vp9_sad32x16x4d_c
   1.569 +
   1.570 +void vp9_sad16x32x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.571 +#define vp9_sad16x32x4d vp9_sad16x32x4d_c
   1.572 +
   1.573 +void vp9_sad32x32x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.574 +#define vp9_sad32x32x4d vp9_sad32x32x4d_c
   1.575 +
   1.576 +void vp9_sad16x16x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.577 +#define vp9_sad16x16x4d vp9_sad16x16x4d_c
   1.578 +
   1.579 +void vp9_sad16x8x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.580 +#define vp9_sad16x8x4d vp9_sad16x8x4d_c
   1.581 +
   1.582 +void vp9_sad8x16x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.583 +#define vp9_sad8x16x4d vp9_sad8x16x4d_c
   1.584 +
   1.585 +void vp9_sad8x8x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.586 +#define vp9_sad8x8x4d vp9_sad8x8x4d_c
   1.587 +
   1.588 +void vp9_sad8x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array);
   1.589 +#define vp9_sad8x4x4d vp9_sad8x4x4d_c
   1.590 +
   1.591 +void vp9_sad4x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array);
   1.592 +#define vp9_sad4x8x4d vp9_sad4x8x4d_c
   1.593 +
   1.594 +void vp9_sad4x4x4d_c(const uint8_t *src_ptr, int  src_stride, const uint8_t* const ref_ptr[], int  ref_stride, unsigned int *sad_array);
   1.595 +#define vp9_sad4x4x4d vp9_sad4x4x4d_c
   1.596 +
   1.597 +unsigned int vp9_mse16x16_c(const uint8_t *src_ptr, int  source_stride, const uint8_t *ref_ptr, int  recon_stride, unsigned int *sse);
   1.598 +#define vp9_mse16x16 vp9_mse16x16_c
   1.599 +
   1.600 +unsigned int vp9_mse8x16_c(const uint8_t *src_ptr, int  source_stride, const uint8_t *ref_ptr, int  recon_stride, unsigned int *sse);
   1.601 +#define vp9_mse8x16 vp9_mse8x16_c
   1.602 +
   1.603 +unsigned int vp9_mse16x8_c(const uint8_t *src_ptr, int  source_stride, const uint8_t *ref_ptr, int  recon_stride, unsigned int *sse);
   1.604 +#define vp9_mse16x8 vp9_mse16x8_c
   1.605 +
   1.606 +unsigned int vp9_mse8x8_c(const uint8_t *src_ptr, int  source_stride, const uint8_t *ref_ptr, int  recon_stride, unsigned int *sse);
   1.607 +#define vp9_mse8x8 vp9_mse8x8_c
   1.608 +
   1.609 +unsigned int vp9_sub_pixel_mse64x64_c(const uint8_t *src_ptr, int  source_stride, int  xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.610 +#define vp9_sub_pixel_mse64x64 vp9_sub_pixel_mse64x64_c
   1.611 +
   1.612 +unsigned int vp9_sub_pixel_mse32x32_c(const uint8_t *src_ptr, int  source_stride, int  xoffset, int  yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
   1.613 +#define vp9_sub_pixel_mse32x32 vp9_sub_pixel_mse32x32_c
   1.614 +
   1.615 +unsigned int vp9_get_mb_ss_c(const int16_t *);
   1.616 +#define vp9_get_mb_ss vp9_get_mb_ss_c
   1.617 +
   1.618 +int64_t vp9_block_error_c(int16_t *coeff, int16_t *dqcoeff, intptr_t block_size, int64_t *ssz);
   1.619 +#define vp9_block_error vp9_block_error_c
   1.620 +
   1.621 +void vp9_subtract_block_c(int rows, int cols, int16_t *diff_ptr, ptrdiff_t diff_stride, const uint8_t *src_ptr, ptrdiff_t src_stride, const uint8_t *pred_ptr, ptrdiff_t pred_stride);
   1.622 +#define vp9_subtract_block vp9_subtract_block_c
   1.623 +
   1.624 +void vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
   1.625 +#define vp9_quantize_b vp9_quantize_b_c
   1.626 +
   1.627 +void vp9_quantize_b_32x32_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
   1.628 +#define vp9_quantize_b_32x32 vp9_quantize_b_32x32_c
   1.629 +
   1.630 +void vp9_short_fht4x4_c(const int16_t *input, int16_t *output, int stride, int tx_type);
   1.631 +#define vp9_short_fht4x4 vp9_short_fht4x4_c
   1.632 +
   1.633 +void vp9_short_fht8x8_c(const int16_t *input, int16_t *output, int stride, int tx_type);
   1.634 +#define vp9_short_fht8x8 vp9_short_fht8x8_c
   1.635 +
   1.636 +void vp9_short_fht16x16_c(const int16_t *input, int16_t *output, int stride, int tx_type);
   1.637 +#define vp9_short_fht16x16 vp9_short_fht16x16_c
   1.638 +
   1.639 +void vp9_fwht4x4_c(const int16_t *input, int16_t *output, int stride);
   1.640 +#define vp9_fwht4x4 vp9_fwht4x4_c
   1.641 +
   1.642 +void vp9_fdct4x4_c(const int16_t *input, int16_t *output, int stride);
   1.643 +#define vp9_fdct4x4 vp9_fdct4x4_c
   1.644 +
   1.645 +void vp9_fdct8x8_c(const int16_t *input, int16_t *output, int stride);
   1.646 +#define vp9_fdct8x8 vp9_fdct8x8_c
   1.647 +
   1.648 +void vp9_fdct16x16_c(const int16_t *input, int16_t *output, int stride);
   1.649 +#define vp9_fdct16x16 vp9_fdct16x16_c
   1.650 +
   1.651 +void vp9_fdct32x32_c(const int16_t *input, int16_t *output, int stride);
   1.652 +#define vp9_fdct32x32 vp9_fdct32x32_c
   1.653 +
   1.654 +void vp9_fdct32x32_rd_c(const int16_t *input, int16_t *output, int stride);
   1.655 +#define vp9_fdct32x32_rd vp9_fdct32x32_rd_c
   1.656 +
   1.657 +int vp9_full_search_sad_c(struct macroblock *x, union int_mv *ref_mv, int sad_per_bit, int distance, struct vp9_variance_vtable *fn_ptr, DEC_MVCOSTS, union int_mv *center_mv, int n);
   1.658 +#define vp9_full_search_sad vp9_full_search_sad_c
   1.659 +
   1.660 +int vp9_refining_search_sad_c(struct macroblock *x, union int_mv *ref_mv, int sad_per_bit, int distance, struct vp9_variance_vtable *fn_ptr, DEC_MVCOSTS, union int_mv *center_mv);
   1.661 +#define vp9_refining_search_sad vp9_refining_search_sad_c
   1.662 +
   1.663 +int vp9_diamond_search_sad_c(struct macroblock *x, union int_mv *ref_mv, union int_mv *best_mv, int search_param, int sad_per_bit, int *num00, struct vp9_variance_vtable *fn_ptr, DEC_MVCOSTS, union int_mv *center_mv);
   1.664 +#define vp9_diamond_search_sad vp9_diamond_search_sad_c
   1.665 +
   1.666 +void vp9_temporal_filter_apply_c(uint8_t *frame1, unsigned int stride, uint8_t *frame2, unsigned int block_size, int strength, int filter_weight, unsigned int *accumulator, uint16_t *count);
   1.667 +#define vp9_temporal_filter_apply vp9_temporal_filter_apply_c
   1.668 +
   1.669 +void vp9_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc, int fraction);
   1.670 +#define vp9_yv12_copy_partial_frame vp9_yv12_copy_partial_frame_c
   1.671 +
   1.672 +void vp9_rtcd(void);
   1.673 +#include "vpx_config.h"
   1.674 +
   1.675 +#ifdef RTCD_C
   1.676 +static void setup_rtcd_internal(void)
   1.677 +{
   1.678 +
   1.679 +}
   1.680 +#endif
   1.681 +#endif

mercurial