| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_
block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_pt
r, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const
int16_t *scan, const int16_t *iscan); | 77 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_
block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_pt
r, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const
int16_t *scan, const int16_t *iscan); |
| 78 #define vp9_quantize_fp vp9_quantize_fp_c | 78 #define vp9_quantize_fp vp9_quantize_fp_c |
| 79 | 79 |
| 80 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int
skip_block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qco
eff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr,
const int16_t *scan, const int16_t *iscan); | 80 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int
skip_block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qco
eff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr,
const int16_t *scan, const int16_t *iscan); |
| 81 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c | 81 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c |
| 82 | 82 |
| 83 void vp9_scale_and_extend_frame_c(const struct yv12_buffer_config *src, struct y
v12_buffer_config *dst); | 83 void vp9_scale_and_extend_frame_c(const struct yv12_buffer_config *src, struct y
v12_buffer_config *dst); |
| 84 #define vp9_scale_and_extend_frame vp9_scale_and_extend_frame_c | 84 #define vp9_scale_and_extend_frame vp9_scale_and_extend_frame_c |
| 85 | 85 |
| 86 void vp9_temporal_filter_apply_c(uint8_t *frame1, unsigned int stride, uint8_t *
frame2, unsigned int block_width, unsigned int block_height, int strength, int f
ilter_weight, unsigned int *accumulator, uint16_t *count); | 86 void vp9_temporal_filter_apply_c(const uint8_t *frame1, unsigned int stride, con
st uint8_t *frame2, unsigned int block_width, unsigned int block_height, int str
ength, int filter_weight, unsigned int *accumulator, uint16_t *count); |
| 87 #define vp9_temporal_filter_apply vp9_temporal_filter_apply_c | 87 #define vp9_temporal_filter_apply vp9_temporal_filter_apply_c |
| 88 | 88 |
| 89 void vp9_rtcd(void); | 89 void vp9_rtcd(void); |
| 90 | 90 |
| 91 #include "vpx_config.h" | 91 #include "vpx_config.h" |
| 92 | 92 |
| 93 #ifdef RTCD_C | 93 #ifdef RTCD_C |
| 94 #include "vpx_ports/arm.h" | 94 #include "vpx_ports/arm.h" |
| 95 static void setup_rtcd_internal(void) | 95 static void setup_rtcd_internal(void) |
| 96 { | 96 { |
| 97 int flags = arm_cpu_caps(); | 97 int flags = arm_cpu_caps(); |
| 98 | 98 |
| 99 (void)flags; | 99 (void)flags; |
| 100 | 100 |
| 101 } | 101 } |
| 102 #endif | 102 #endif |
| 103 | 103 |
| 104 #ifdef __cplusplus | 104 #ifdef __cplusplus |
| 105 } // extern "C" | 105 } // extern "C" |
| 106 #endif | 106 #endif |
| 107 | 107 |
| 108 #endif | 108 #endif |
| OLD | NEW |