| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 | 295 |
| 296 void vpx_h_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov
e, const uint8_t *left); | 296 void vpx_h_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov
e, const uint8_t *left); |
| 297 void vpx_h_predictor_4x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a
bove, const uint8_t *left); | 297 void vpx_h_predictor_4x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a
bove, const uint8_t *left); |
| 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 void vpx_hadamard_16x16_neon(const int16_t *src_diff, int src_stride, int16_t *c
oeff); |
| 306 #define vpx_hadamard_16x16 vpx_hadamard_16x16_neon |
| 306 | 307 |
| 307 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff)
; | 308 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff)
; |
| 308 void vpx_hadamard_8x8_neon(const int16_t *src_diff, int src_stride, int16_t *coe
ff); | 309 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 | 310 #define vpx_hadamard_8x8 vpx_hadamard_8x8_neon |
| 310 | 311 |
| 311 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo
ve, const uint8_t *left); | 312 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo
ve, const uint8_t *left); |
| 312 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c | 313 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c |
| 313 | 314 |
| 314 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str
ide); | 315 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str
ide); |
| 315 void vpx_idct16x16_10_add_neon(const tran_low_t *input, uint8_t *dest, int dest_
stride); | 316 void vpx_idct16x16_10_add_neon(const tran_low_t *input, uint8_t *dest, int dest_
stride); |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 (void)flags; | 833 (void)flags; |
| 833 | 834 |
| 834 } | 835 } |
| 835 #endif | 836 #endif |
| 836 | 837 |
| 837 #ifdef __cplusplus | 838 #ifdef __cplusplus |
| 838 } // extern "C" | 839 } // extern "C" |
| 839 #endif | 840 #endif |
| 840 | 841 |
| 841 #endif | 842 #endif |
| OLD | NEW |