| OLD | NEW |
| 1 #ifndef VP9_RTCD_H_ | 1 #ifndef VP9_RTCD_H_ |
| 2 #define VP9_RTCD_H_ | 2 #define VP9_RTCD_H_ |
| 3 | 3 |
| 4 #ifdef RTCD_C | 4 #ifdef RTCD_C |
| 5 #define RTCD_EXTERN | 5 #define RTCD_EXTERN |
| 6 #else | 6 #else |
| 7 #define RTCD_EXTERN extern | 7 #define RTCD_EXTERN extern |
| 8 #endif | 8 #endif |
| 9 | 9 |
| 10 /* | 10 /* |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 175 |
| 176 void vp9_dc_top_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_
t *above, const uint8_t *left); | 176 void vp9_dc_top_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_
t *above, const uint8_t *left); |
| 177 #define vp9_dc_top_predictor_32x32 vp9_dc_top_predictor_32x32_c | 177 #define vp9_dc_top_predictor_32x32 vp9_dc_top_predictor_32x32_c |
| 178 | 178 |
| 179 void vp9_dc_top_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t
*above, const uint8_t *left); | 179 void vp9_dc_top_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t
*above, const uint8_t *left); |
| 180 #define vp9_dc_top_predictor_4x4 vp9_dc_top_predictor_4x4_c | 180 #define vp9_dc_top_predictor_4x4 vp9_dc_top_predictor_4x4_c |
| 181 | 181 |
| 182 void vp9_dc_top_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t
*above, const uint8_t *left); | 182 void vp9_dc_top_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t
*above, const uint8_t *left); |
| 183 #define vp9_dc_top_predictor_8x8 vp9_dc_top_predictor_8x8_c | 183 #define vp9_dc_top_predictor_8x8 vp9_dc_top_predictor_8x8_c |
| 184 | 184 |
| 185 int vp9_denoiser_filter_c(const uint8_t *sig, int sig_stride, const uint8_t *mc_
avg, int mc_avg_stride, uint8_t *avg, int avg_stride, int increase_denoising, BL
OCK_SIZE bs, int motion_magnitude); |
| 186 #define vp9_denoiser_filter vp9_denoiser_filter_c |
| 187 |
| 185 int vp9_diamond_search_sad_c(const struct macroblock *x, const struct search_sit
e_config *cfg, struct mv *ref_mv, struct mv *best_mv, int search_param, int sad
_per_bit, int *num00, const struct vp9_variance_vtable *fn_ptr, const struct mv
*center_mv); | 188 int vp9_diamond_search_sad_c(const struct macroblock *x, const struct search_sit
e_config *cfg, struct mv *ref_mv, struct mv *best_mv, int search_param, int sad
_per_bit, int *num00, const struct vp9_variance_vtable *fn_ptr, const struct mv
*center_mv); |
| 186 #define vp9_diamond_search_sad vp9_diamond_search_sad_c | 189 #define vp9_diamond_search_sad vp9_diamond_search_sad_c |
| 187 | 190 |
| 188 void vp9_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride); | 191 void vp9_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride); |
| 189 #define vp9_fdct16x16 vp9_fdct16x16_c | 192 #define vp9_fdct16x16 vp9_fdct16x16_c |
| 190 | 193 |
| 191 void vp9_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stride); | 194 void vp9_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stride); |
| 192 #define vp9_fdct16x16_1 vp9_fdct16x16_1_c | 195 #define vp9_fdct16x16_1 vp9_fdct16x16_1_c |
| 193 | 196 |
| 194 void vp9_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride); | 197 void vp9_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride); |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 static void setup_rtcd_internal(void) | 682 static void setup_rtcd_internal(void) |
| 680 { | 683 { |
| 681 } | 684 } |
| 682 #endif | 685 #endif |
| 683 | 686 |
| 684 #ifdef __cplusplus | 687 #ifdef __cplusplus |
| 685 } // extern "C" | 688 } // extern "C" |
| 686 #endif | 689 #endif |
| 687 | 690 |
| 688 #endif | 691 #endif |
| OLD | NEW |