| OLD | NEW |
| 1 #ifndef VP8_RTCD_H_ | 1 #ifndef VP8_RTCD_H_ |
| 2 #define VP8_RTCD_H_ | 2 #define VP8_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 #ifdef __cplusplus | 10 #ifdef __cplusplus |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); | 68 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); |
| 69 #define vp8_copy_mem8x8 vp8_copy_mem8x8_c | 69 #define vp8_copy_mem8x8 vp8_copy_mem8x8_c |
| 70 | 70 |
| 71 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u
nsigned char *dst, int dst_stride); | 71 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u
nsigned char *dst, int dst_stride); |
| 72 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_c | 72 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_c |
| 73 | 73 |
| 74 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_stri
de, unsigned int motion_magnitude, int increase_denoising); | 74 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_stri
de, unsigned int motion_magnitude, int increase_denoising); |
| 75 #define vp8_denoiser_filter vp8_denoiser_filter_c | 75 #define vp8_denoiser_filter vp8_denoiser_filter_c |
| 76 | 76 |
| 77 int vp8_denoiser_filter_uv_c(unsigned char *mc_running_avg, int mc_avg_stride, u
nsigned char *running_avg, int avg_stride, unsigned char *sig, int sig_stride, u
nsigned int motion_magnitude, int increase_denoising); |
| 78 #define vp8_denoiser_filter_uv vp8_denoiser_filter_uv_c |
| 79 |
| 77 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int
stride); | 80 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int
stride); |
| 78 #define vp8_dequant_idct_add vp8_dequant_idct_add_c | 81 #define vp8_dequant_idct_add vp8_dequant_idct_add_c |
| 79 | 82 |
| 80 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u,
unsigned char *dst_v, int stride, char *eobs); | 83 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u,
unsigned char *dst_v, int stride, char *eobs); |
| 81 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_c | 84 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_c |
| 82 | 85 |
| 83 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int
stride, char *eobs); | 86 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int
stride, char *eobs); |
| 84 #define vp8_dequant_idct_add_y_block vp8_dequant_idct_add_y_block_c | 87 #define vp8_dequant_idct_add_y_block vp8_dequant_idct_add_y_block_c |
| 85 | 88 |
| 86 void vp8_dequantize_b_c(struct blockd*, short *dqc); | 89 void vp8_dequantize_b_c(struct blockd*, short *dqc); |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 static void setup_rtcd_internal(void) | 337 static void setup_rtcd_internal(void) |
| 335 { | 338 { |
| 336 } | 339 } |
| 337 #endif | 340 #endif |
| 338 | 341 |
| 339 #ifdef __cplusplus | 342 #ifdef __cplusplus |
| 340 } // extern "C" | 343 } // extern "C" |
| 341 #endif | 344 #endif |
| 342 | 345 |
| 343 #endif | 346 #endif |
| OLD | NEW |