| OLD | NEW |
| 1 #ifndef VPX_DSP_RTCD_H_ | 1 #ifndef VPX_DSP_RTCD_H_ |
| 2 #define VPX_DSP_RTCD_H_ | 2 #define VPX_DSP_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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 #define vpx_h_predictor_4x4 vpx_h_predictor_4x4_neon | 298 #define vpx_h_predictor_4x4 vpx_h_predictor_4x4_neon |
| 299 | 299 |
| 300 void vpx_h_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov
e, const uint8_t *left); | 300 void vpx_h_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov
e, const uint8_t *left); |
| 301 void vpx_h_predictor_8x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a
bove, const uint8_t *left); | 301 void vpx_h_predictor_8x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a
bove, const uint8_t *left); |
| 302 #define vpx_h_predictor_8x8 vpx_h_predictor_8x8_neon | 302 #define vpx_h_predictor_8x8 vpx_h_predictor_8x8_neon |
| 303 | 303 |
| 304 void vpx_hadamard_16x16_c(const int16_t *src_diff, int src_stride, int16_t *coef
f); | 304 void vpx_hadamard_16x16_c(const int16_t *src_diff, int src_stride, int16_t *coef
f); |
| 305 #define vpx_hadamard_16x16 vpx_hadamard_16x16_c | 305 #define vpx_hadamard_16x16 vpx_hadamard_16x16_c |
| 306 | 306 |
| 307 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff)
; | 307 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff)
; |
| 308 #define vpx_hadamard_8x8 vpx_hadamard_8x8_c | 308 void vpx_hadamard_8x8_neon(const int16_t *src_diff, int src_stride, int16_t *coe
ff); |
| 309 #define vpx_hadamard_8x8 vpx_hadamard_8x8_neon |
| 309 | 310 |
| 310 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo
ve, const uint8_t *left); | 311 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo
ve, const uint8_t *left); |
| 311 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c | 312 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c |
| 312 | 313 |
| 313 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str
ide); | 314 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str
ide); |
| 314 void vpx_idct16x16_10_add_neon(const tran_low_t *input, uint8_t *dest, int dest_
stride); | 315 void vpx_idct16x16_10_add_neon(const tran_low_t *input, uint8_t *dest, int dest_
stride); |
| 315 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_neon | 316 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_neon |
| 316 | 317 |
| 317 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri
de); | 318 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri
de); |
| 318 void vpx_idct16x16_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s
tride); | 319 void vpx_idct16x16_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s
tride); |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 (void)flags; | 832 (void)flags; |
| 832 | 833 |
| 833 } | 834 } |
| 834 #endif | 835 #endif |
| 835 | 836 |
| 836 #ifdef __cplusplus | 837 #ifdef __cplusplus |
| 837 } // extern "C" | 838 } // extern "C" |
| 838 #endif | 839 #endif |
| 839 | 840 |
| 840 #endif | 841 #endif |
| OLD | NEW |