| OLD | NEW |
| (Empty) |
| 1 #ifndef VPX_RTCD_ | |
| 2 #define VPX_RTCD_ | |
| 3 | |
| 4 #ifdef RTCD_C | |
| 5 #define RTCD_EXTERN | |
| 6 #else | |
| 7 #define RTCD_EXTERN extern | |
| 8 #endif | |
| 9 | |
| 10 struct blockd; | |
| 11 struct macroblockd; | |
| 12 struct loop_filter_info; | |
| 13 | |
| 14 /* Encoder forward decls */ | |
| 15 struct block; | |
| 16 struct macroblock; | |
| 17 struct variance_vtable; | |
| 18 union int_mv; | |
| 19 struct yv12_buffer_config; | |
| 20 | |
| 21 void vp8_dequantize_b_c(struct blockd*, short *dqc); | |
| 22 #define vp8_dequantize_b vp8_dequantize_b_c | |
| 23 | |
| 24 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int
stride); | |
| 25 #define vp8_dequant_idct_add vp8_dequant_idct_add_c | |
| 26 | |
| 27 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int
stride, char *eobs); | |
| 28 #define vp8_dequant_idct_add_y_block vp8_dequant_idct_add_y_block_c | |
| 29 | |
| 30 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u,
unsigned char *dst_v, int stride, char *eobs); | |
| 31 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_c | |
| 32 | |
| 33 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); | |
| 34 #define vp8_loop_filter_mbv vp8_loop_filter_mbv_c | |
| 35 | |
| 36 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); | |
| 37 #define vp8_loop_filter_bv vp8_loop_filter_bv_c | |
| 38 | |
| 39 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); | |
| 40 #define vp8_loop_filter_mbh vp8_loop_filter_mbh_c | |
| 41 | |
| 42 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); | |
| 43 #define vp8_loop_filter_bh vp8_loop_filter_bh_c | |
| 44 | |
| 45 void vp8_loop_filter_simple_vertical_edge_c(unsigned char *y, int ystride, const
unsigned char *blimit); | |
| 46 #define vp8_loop_filter_simple_mbv vp8_loop_filter_simple_mbv_c | |
| 47 | |
| 48 void vp8_loop_filter_simple_horizontal_edge_c(unsigned char *y, int ystride, con
st unsigned char *blimit); | |
| 49 #define vp8_loop_filter_simple_mbh vp8_loop_filter_simple_mbh_c | |
| 50 | |
| 51 void vp8_loop_filter_bvs_c(unsigned char *y, int ystride, const unsigned char *b
limit); | |
| 52 #define vp8_loop_filter_simple_bv vp8_loop_filter_simple_bv_c | |
| 53 | |
| 54 void vp8_loop_filter_bhs_c(unsigned char *y, int ystride, const unsigned char *b
limit); | |
| 55 #define vp8_loop_filter_simple_bh vp8_loop_filter_simple_bh_c | |
| 56 | |
| 57 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsign
ed char *dst, int dst_stride); | |
| 58 #define vp8_short_idct4x4llm vp8_short_idct4x4llm_c | |
| 59 | |
| 60 void vp8_short_inv_walsh4x4_1_c(short *input, short *output); | |
| 61 #define vp8_short_inv_walsh4x4_1 vp8_short_inv_walsh4x4_1_c | |
| 62 | |
| 63 void vp8_short_inv_walsh4x4_c(short *input, short *output); | |
| 64 #define vp8_short_inv_walsh4x4 vp8_short_inv_walsh4x4_c | |
| 65 | |
| 66 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u
nsigned char *dst, int dst_stride); | |
| 67 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_c | |
| 68 | |
| 69 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); | |
| 70 #define vp8_copy_mem16x16 vp8_copy_mem16x16_c | |
| 71 | |
| 72 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); | |
| 73 #define vp8_copy_mem8x8 vp8_copy_mem8x8_c | |
| 74 | |
| 75 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); | |
| 76 #define vp8_copy_mem8x4 vp8_copy_mem8x4_c | |
| 77 | |
| 78 void vp8_build_intra_predictors_mby_s_c(struct macroblockd *x, unsigned char * y
above_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, in
t y_stride); | |
| 79 #define vp8_build_intra_predictors_mby_s vp8_build_intra_predictors_mby_s_c | |
| 80 | |
| 81 void vp8_build_intra_predictors_mbuv_s_c(struct macroblockd *x, unsigned char *
uabove_row, unsigned char * vabove_row, unsigned char *uleft, unsigned char *vl
eft, int left_stride, unsigned char * upred_ptr, unsigned char * vpred_ptr, int
pred_stride); | |
| 82 #define vp8_build_intra_predictors_mbuv_s vp8_build_intra_predictors_mbuv_s_c | |
| 83 | |
| 84 void vp8_intra4x4_predict_d_c(unsigned char *above, unsigned char *left, int lef
t_stride, int b_mode, unsigned char *dst, int dst_stride, unsigned char top_left
); | |
| 85 #define vp8_intra4x4_predict_d vp8_intra4x4_predict_d_c | |
| 86 | |
| 87 void vp8_intra4x4_predict_c(unsigned char *src, int src_stride, int b_mode, unsi
gned char *dst, int dst_stride); | |
| 88 #define vp8_intra4x4_predict vp8_intra4x4_predict_c | |
| 89 | |
| 90 void vp8_sixtap_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int
yofst, unsigned char *dst, int dst_pitch); | |
| 91 #define vp8_sixtap_predict16x16 vp8_sixtap_predict16x16_c | |
| 92 | |
| 93 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | |
| 94 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_c | |
| 95 | |
| 96 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | |
| 97 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_c | |
| 98 | |
| 99 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | |
| 100 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c | |
| 101 | |
| 102 void vp8_bilinear_predict16x16_c(unsigned char *src, int src_pitch, int xofst, i
nt yofst, unsigned char *dst, int dst_pitch); | |
| 103 #define vp8_bilinear_predict16x16 vp8_bilinear_predict16x16_c | |
| 104 | |
| 105 void vp8_bilinear_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int
yofst, unsigned char *dst, int dst_pitch); | |
| 106 #define vp8_bilinear_predict8x8 vp8_bilinear_predict8x8_c | |
| 107 | |
| 108 void vp8_bilinear_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int
yofst, unsigned char *dst, int dst_pitch); | |
| 109 #define vp8_bilinear_predict8x4 vp8_bilinear_predict8x4_c | |
| 110 | |
| 111 void vp8_bilinear_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int
yofst, unsigned char *dst, int dst_pitch); | |
| 112 #define vp8_bilinear_predict4x4 vp8_bilinear_predict4x4_c | |
| 113 | |
| 114 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride,
const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); | |
| 115 #define vp8_variance4x4 vp8_variance4x4_c | |
| 116 | |
| 117 unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride,
const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); | |
| 118 #define vp8_variance8x8 vp8_variance8x8_c | |
| 119 | |
| 120 unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride,
const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); | |
| 121 #define vp8_variance8x16 vp8_variance8x16_c | |
| 122 | |
| 123 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride,
const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); | |
| 124 #define vp8_variance16x8 vp8_variance16x8_c | |
| 125 | |
| 126 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride
, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); | |
| 127 #define vp8_variance16x16 vp8_variance16x16_c | |
| 128 | |
| 129 unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char *src_ptr, int sou
rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr
ide, unsigned int *sse); | |
| 130 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c | |
| 131 | |
| 132 unsigned int vp8_sub_pixel_variance8x8_c(const unsigned char *src_ptr, int sou
rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr
ide, unsigned int *sse); | |
| 133 #define vp8_sub_pixel_variance8x8 vp8_sub_pixel_variance8x8_c | |
| 134 | |
| 135 unsigned int vp8_sub_pixel_variance8x16_c(const unsigned char *src_ptr, int so
urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst
ride, unsigned int *sse); | |
| 136 #define vp8_sub_pixel_variance8x16 vp8_sub_pixel_variance8x16_c | |
| 137 | |
| 138 unsigned int vp8_sub_pixel_variance16x8_c(const unsigned char *src_ptr, int so
urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst
ride, unsigned int *sse); | |
| 139 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c | |
| 140 | |
| 141 unsigned int vp8_sub_pixel_variance16x16_c(const unsigned char *src_ptr, int s
ource_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refs
tride, unsigned int *sse); | |
| 142 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_c | |
| 143 | |
| 144 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse)
; | |
| 145 #define vp8_variance_halfpixvar16x16_h vp8_variance_halfpixvar16x16_h_c | |
| 146 | |
| 147 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse)
; | |
| 148 #define vp8_variance_halfpixvar16x16_v vp8_variance_halfpixvar16x16_v_c | |
| 149 | |
| 150 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse
); | |
| 151 #define vp8_variance_halfpixvar16x16_hv vp8_variance_halfpixvar16x16_hv_c | |
| 152 | |
| 153 unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int source_stride, const
unsigned char *ref_ptr, int ref_stride, int max_sad); | |
| 154 #define vp8_sad4x4 vp8_sad4x4_c | |
| 155 | |
| 156 unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int source_stride, const
unsigned char *ref_ptr, int ref_stride, int max_sad); | |
| 157 #define vp8_sad8x8 vp8_sad8x8_c | |
| 158 | |
| 159 unsigned int vp8_sad8x16_c(const unsigned char *src_ptr, int source_stride, cons
t unsigned char *ref_ptr, int ref_stride, int max_sad); | |
| 160 #define vp8_sad8x16 vp8_sad8x16_c | |
| 161 | |
| 162 unsigned int vp8_sad16x8_c(const unsigned char *src_ptr, int source_stride, cons
t unsigned char *ref_ptr, int ref_stride, int max_sad); | |
| 163 #define vp8_sad16x8 vp8_sad16x8_c | |
| 164 | |
| 165 unsigned int vp8_sad16x16_c(const unsigned char *src_ptr, int source_stride, con
st unsigned char *ref_ptr, int ref_stride, int max_sad); | |
| 166 #define vp8_sad16x16 vp8_sad16x16_c | |
| 167 | |
| 168 void vp8_sad4x4x3_c(const unsigned char *src_ptr, int source_stride, const unsig
ned char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
| 169 #define vp8_sad4x4x3 vp8_sad4x4x3_c | |
| 170 | |
| 171 void vp8_sad8x8x3_c(const unsigned char *src_ptr, int source_stride, const unsig
ned char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
| 172 #define vp8_sad8x8x3 vp8_sad8x8x3_c | |
| 173 | |
| 174 void vp8_sad8x16x3_c(const unsigned char *src_ptr, int source_stride, const unsi
gned char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
| 175 #define vp8_sad8x16x3 vp8_sad8x16x3_c | |
| 176 | |
| 177 void vp8_sad16x8x3_c(const unsigned char *src_ptr, int source_stride, const unsi
gned char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
| 178 #define vp8_sad16x8x3 vp8_sad16x8x3_c | |
| 179 | |
| 180 void vp8_sad16x16x3_c(const unsigned char *src_ptr, int source_stride, const uns
igned char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
| 181 #define vp8_sad16x16x3 vp8_sad16x16x3_c | |
| 182 | |
| 183 void vp8_sad4x4x8_c(const unsigned char *src_ptr, int source_stride, const unsig
ned char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
| 184 #define vp8_sad4x4x8 vp8_sad4x4x8_c | |
| 185 | |
| 186 void vp8_sad8x8x8_c(const unsigned char *src_ptr, int source_stride, const unsig
ned char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
| 187 #define vp8_sad8x8x8 vp8_sad8x8x8_c | |
| 188 | |
| 189 void vp8_sad8x16x8_c(const unsigned char *src_ptr, int source_stride, const unsi
gned char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
| 190 #define vp8_sad8x16x8 vp8_sad8x16x8_c | |
| 191 | |
| 192 void vp8_sad16x8x8_c(const unsigned char *src_ptr, int source_stride, const unsi
gned char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
| 193 #define vp8_sad16x8x8 vp8_sad16x8x8_c | |
| 194 | |
| 195 void vp8_sad16x16x8_c(const unsigned char *src_ptr, int source_stride, const uns
igned char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
| 196 #define vp8_sad16x16x8 vp8_sad16x16x8_c | |
| 197 | |
| 198 void vp8_sad4x4x4d_c(const unsigned char *src_ptr, int source_stride, unsigned c
har *ref_ptr[4], int ref_stride, unsigned int *sad_array); | |
| 199 #define vp8_sad4x4x4d vp8_sad4x4x4d_c | |
| 200 | |
| 201 void vp8_sad8x8x4d_c(const unsigned char *src_ptr, int source_stride, unsigned c
har *ref_ptr[4], int ref_stride, unsigned int *sad_array); | |
| 202 #define vp8_sad8x8x4d vp8_sad8x8x4d_c | |
| 203 | |
| 204 void vp8_sad8x16x4d_c(const unsigned char *src_ptr, int source_stride, unsigned
char *ref_ptr[4], int ref_stride, unsigned int *sad_array); | |
| 205 #define vp8_sad8x16x4d vp8_sad8x16x4d_c | |
| 206 | |
| 207 void vp8_sad16x8x4d_c(const unsigned char *src_ptr, int source_stride, unsigned
char *ref_ptr[4], int ref_stride, unsigned int *sad_array); | |
| 208 #define vp8_sad16x8x4d vp8_sad16x8x4d_c | |
| 209 | |
| 210 void vp8_sad16x16x4d_c(const unsigned char *src_ptr, int source_stride, unsigned
char *ref_ptr[4], int ref_stride, unsigned int *sad_array); | |
| 211 #define vp8_sad16x16x4d vp8_sad16x16x4d_c | |
| 212 | |
| 213 unsigned int vp8_get_mb_ss_c(const short *); | |
| 214 #define vp8_get_mb_ss vp8_get_mb_ss_c | |
| 215 | |
| 216 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); | |
| 217 #define vp8_sub_pixel_mse16x16 vp8_sub_pixel_mse16x16_c | |
| 218 | |
| 219 unsigned int vp8_mse16x16_c(const unsigned char *src_ptr, int source_stride, con
st unsigned char *ref_ptr, int ref_stride, unsigned int *sse); | |
| 220 #define vp8_mse16x16 vp8_mse16x16_c | |
| 221 | |
| 222 unsigned int vp8_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride,
const unsigned char *ref_ptr, int ref_stride); | |
| 223 #define vp8_get4x4sse_cs vp8_get4x4sse_cs_c | |
| 224 | |
| 225 void vp8_copy32xn_c(const unsigned char *src_ptr, int source_stride, const unsig
ned char *ref_ptr, int ref_stride, int n); | |
| 226 #define vp8_copy32xn vp8_copy32xn_c | |
| 227 | |
| 228 void vp8_short_fdct4x4_c(short *input, short *output, int pitch); | |
| 229 #define vp8_short_fdct4x4 vp8_short_fdct4x4_c | |
| 230 | |
| 231 void vp8_short_fdct8x4_c(short *input, short *output, int pitch); | |
| 232 #define vp8_short_fdct8x4 vp8_short_fdct8x4_c | |
| 233 | |
| 234 void vp8_short_walsh4x4_c(short *input, short *output, int pitch); | |
| 235 #define vp8_short_walsh4x4 vp8_short_walsh4x4_c | |
| 236 | |
| 237 void vp8_regular_quantize_b_c(struct block *, struct blockd *); | |
| 238 #define vp8_regular_quantize_b vp8_regular_quantize_b_c | |
| 239 | |
| 240 void vp8_fast_quantize_b_c(struct block *, struct blockd *); | |
| 241 #define vp8_fast_quantize_b vp8_fast_quantize_b_c | |
| 242 | |
| 243 void vp8_regular_quantize_b_pair_c(struct block *b1, struct block *b2, struct bl
ockd *d1, struct blockd *d2); | |
| 244 #define vp8_regular_quantize_b_pair vp8_regular_quantize_b_pair_c | |
| 245 | |
| 246 void vp8_fast_quantize_b_pair_c(struct block *b1, struct block *b2, struct block
d *d1, struct blockd *d2); | |
| 247 #define vp8_fast_quantize_b_pair vp8_fast_quantize_b_pair_c | |
| 248 | |
| 249 void vp8_quantize_mb_c(struct macroblock *); | |
| 250 #define vp8_quantize_mb vp8_quantize_mb_c | |
| 251 | |
| 252 void vp8_quantize_mby_c(struct macroblock *); | |
| 253 #define vp8_quantize_mby vp8_quantize_mby_c | |
| 254 | |
| 255 void vp8_quantize_mbuv_c(struct macroblock *); | |
| 256 #define vp8_quantize_mbuv vp8_quantize_mbuv_c | |
| 257 | |
| 258 int vp8_block_error_c(short *coeff, short *dqcoeff); | |
| 259 #define vp8_block_error vp8_block_error_c | |
| 260 | |
| 261 int vp8_mbblock_error_c(struct macroblock *mb, int dc); | |
| 262 #define vp8_mbblock_error vp8_mbblock_error_c | |
| 263 | |
| 264 int vp8_mbuverror_c(struct macroblock *mb); | |
| 265 #define vp8_mbuverror vp8_mbuverror_c | |
| 266 | |
| 267 void vp8_subtract_b_c(struct block *be, struct blockd *bd, int pitch); | |
| 268 #define vp8_subtract_b vp8_subtract_b_c | |
| 269 | |
| 270 void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigne
d char *pred, int pred_stride); | |
| 271 #define vp8_subtract_mby vp8_subtract_mby_c | |
| 272 | |
| 273 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); | |
| 274 #define vp8_subtract_mbuv vp8_subtract_mbuv_c | |
| 275 | |
| 276 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); | |
| 277 #define vp8_full_search_sad vp8_full_search_sad_c | |
| 278 | |
| 279 int vp8_refining_search_sad_c(struct macroblock *x, struct block *b, struct bloc
kd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtab
le *fn_ptr, int *mvcost[2], union int_mv *center_mv); | |
| 280 #define vp8_refining_search_sad vp8_refining_search_sad_c | |
| 281 | |
| 282 int vp8_diamond_search_sad_c(struct macroblock *x, struct block *b, struct block
d *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); | |
| 283 #define vp8_diamond_search_sad vp8_diamond_search_sad_c | |
| 284 | |
| 285 void vp8_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv
12_buffer_config *dst_ybc); | |
| 286 #define vp8_yv12_copy_partial_frame vp8_yv12_copy_partial_frame_c | |
| 287 | |
| 288 void vp8_horizontal_line_4_5_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | |
| 289 #define vp8_horizontal_line_4_5_scale vp8_horizontal_line_4_5_scale_c | |
| 290 | |
| 291 void vp8_vertical_band_4_5_scale_c(unsigned char *dest, unsigned int dest_pitch,
unsigned int dest_width); | |
| 292 #define vp8_vertical_band_4_5_scale vp8_vertical_band_4_5_scale_c | |
| 293 | |
| 294 void vp8_last_vertical_band_4_5_scale_c(unsigned char *dest, unsigned int dest_p
itch, unsigned int dest_width); | |
| 295 #define vp8_last_vertical_band_4_5_scale vp8_last_vertical_band_4_5_scale_c | |
| 296 | |
| 297 void vp8_horizontal_line_2_3_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | |
| 298 #define vp8_horizontal_line_2_3_scale vp8_horizontal_line_2_3_scale_c | |
| 299 | |
| 300 void vp8_vertical_band_2_3_scale_c(unsigned char *dest, unsigned int dest_pitch,
unsigned int dest_width); | |
| 301 #define vp8_vertical_band_2_3_scale vp8_vertical_band_2_3_scale_c | |
| 302 | |
| 303 void vp8_last_vertical_band_2_3_scale_c(unsigned char *dest, unsigned int dest_p
itch, unsigned int dest_width); | |
| 304 #define vp8_last_vertical_band_2_3_scale vp8_last_vertical_band_2_3_scale_c | |
| 305 | |
| 306 void vp8_horizontal_line_3_5_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | |
| 307 #define vp8_horizontal_line_3_5_scale vp8_horizontal_line_3_5_scale_c | |
| 308 | |
| 309 void vp8_vertical_band_3_5_scale_c(unsigned char *dest, unsigned int dest_pitch,
unsigned int dest_width); | |
| 310 #define vp8_vertical_band_3_5_scale vp8_vertical_band_3_5_scale_c | |
| 311 | |
| 312 void vp8_last_vertical_band_3_5_scale_c(unsigned char *dest, unsigned int dest_p
itch, unsigned int dest_width); | |
| 313 #define vp8_last_vertical_band_3_5_scale vp8_last_vertical_band_3_5_scale_c | |
| 314 | |
| 315 void vp8_horizontal_line_3_4_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | |
| 316 #define vp8_horizontal_line_3_4_scale vp8_horizontal_line_3_4_scale_c | |
| 317 | |
| 318 void vp8_vertical_band_3_4_scale_c(unsigned char *dest, unsigned int dest_pitch,
unsigned int dest_width); | |
| 319 #define vp8_vertical_band_3_4_scale vp8_vertical_band_3_4_scale_c | |
| 320 | |
| 321 void vp8_last_vertical_band_3_4_scale_c(unsigned char *dest, unsigned int dest_p
itch, unsigned int dest_width); | |
| 322 #define vp8_last_vertical_band_3_4_scale vp8_last_vertical_band_3_4_scale_c | |
| 323 | |
| 324 void vp8_horizontal_line_1_2_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | |
| 325 #define vp8_horizontal_line_1_2_scale vp8_horizontal_line_1_2_scale_c | |
| 326 | |
| 327 void vp8_vertical_band_1_2_scale_c(unsigned char *dest, unsigned int dest_pitch,
unsigned int dest_width); | |
| 328 #define vp8_vertical_band_1_2_scale vp8_vertical_band_1_2_scale_c | |
| 329 | |
| 330 void vp8_last_vertical_band_1_2_scale_c(unsigned char *dest, unsigned int dest_p
itch, unsigned int dest_width); | |
| 331 #define vp8_last_vertical_band_1_2_scale vp8_last_vertical_band_1_2_scale_c | |
| 332 | |
| 333 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | |
| 334 #define vp8_horizontal_line_5_4_scale vp8_horizontal_line_5_4_scale_c | |
| 335 | |
| 336 void vp8_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch
, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); | |
| 337 #define vp8_vertical_band_5_4_scale vp8_vertical_band_5_4_scale_c | |
| 338 | |
| 339 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | |
| 340 #define vp8_horizontal_line_5_3_scale vp8_horizontal_line_5_3_scale_c | |
| 341 | |
| 342 void vp8_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch
, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); | |
| 343 #define vp8_vertical_band_5_3_scale vp8_vertical_band_5_3_scale_c | |
| 344 | |
| 345 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | |
| 346 #define vp8_horizontal_line_2_1_scale vp8_horizontal_line_2_1_scale_c | |
| 347 | |
| 348 void vp8_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch
, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); | |
| 349 #define vp8_vertical_band_2_1_scale vp8_vertical_band_2_1_scale_c | |
| 350 | |
| 351 void vp8_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pit
ch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); | |
| 352 #define vp8_vertical_band_2_1_scale_i vp8_vertical_band_2_1_scale_i_c | |
| 353 | |
| 354 void vp8_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf); | |
| 355 #define vp8_yv12_extend_frame_borders vp8_yv12_extend_frame_borders_c | |
| 356 | |
| 357 void vp8_yv12_copy_frame_c(struct yv12_buffer_config *src_ybc, struct yv12_buffe
r_config *dst_ybc); | |
| 358 #define vp8_yv12_copy_frame vp8_yv12_copy_frame_c | |
| 359 | |
| 360 void vp8_yv12_copy_y_c(struct yv12_buffer_config *src_ybc, struct yv12_buffer_co
nfig *dst_ybc); | |
| 361 #define vp8_yv12_copy_y vp8_yv12_copy_y_c | |
| 362 | |
| 363 void vpx_rtcd(void); | |
| 364 | |
| 365 #ifdef RTCD_C | |
| 366 static void setup_rtcd_internal(void) | |
| 367 { | |
| 368 } | |
| 369 #endif | |
| 370 #endif | |
| OLD | NEW |