| 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 RTCD_EXTERN void (*vpx_h_predictor_4x4)(uint8_t *dst, ptrdiff_t y_stride, const
uint8_t *above, const uint8_t *left); | 298 RTCD_EXTERN void (*vpx_h_predictor_4x4)(uint8_t *dst, ptrdiff_t y_stride, const
uint8_t *above, const uint8_t *left); |
| 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 RTCD_EXTERN void (*vpx_h_predictor_8x8)(uint8_t *dst, ptrdiff_t y_stride, const
uint8_t *above, const uint8_t *left); | 302 RTCD_EXTERN void (*vpx_h_predictor_8x8)(uint8_t *dst, ptrdiff_t y_stride, const
uint8_t *above, const uint8_t *left); |
| 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 RTCD_EXTERN void (*vpx_hadamard_8x8)(const int16_t *src_diff, int src_stride, in
t16_t *coeff); |
| 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 RTCD_EXTERN void (*vpx_idct16x16_10_add)(const tran_low_t *input, uint8_t *dest,
int dest_stride); | 316 RTCD_EXTERN void (*vpx_idct16x16_10_add)(const tran_low_t *input, uint8_t *dest,
int dest_stride); |
| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 vpx_get8x8var = vpx_get8x8var_c; | 917 vpx_get8x8var = vpx_get8x8var_c; |
| 917 if (flags & HAS_NEON) vpx_get8x8var = vpx_get8x8var_neon; | 918 if (flags & HAS_NEON) vpx_get8x8var = vpx_get8x8var_neon; |
| 918 vpx_h_predictor_16x16 = vpx_h_predictor_16x16_c; | 919 vpx_h_predictor_16x16 = vpx_h_predictor_16x16_c; |
| 919 if (flags & HAS_NEON) vpx_h_predictor_16x16 = vpx_h_predictor_16x16_neon; | 920 if (flags & HAS_NEON) vpx_h_predictor_16x16 = vpx_h_predictor_16x16_neon; |
| 920 vpx_h_predictor_32x32 = vpx_h_predictor_32x32_c; | 921 vpx_h_predictor_32x32 = vpx_h_predictor_32x32_c; |
| 921 if (flags & HAS_NEON) vpx_h_predictor_32x32 = vpx_h_predictor_32x32_neon; | 922 if (flags & HAS_NEON) vpx_h_predictor_32x32 = vpx_h_predictor_32x32_neon; |
| 922 vpx_h_predictor_4x4 = vpx_h_predictor_4x4_c; | 923 vpx_h_predictor_4x4 = vpx_h_predictor_4x4_c; |
| 923 if (flags & HAS_NEON) vpx_h_predictor_4x4 = vpx_h_predictor_4x4_neon; | 924 if (flags & HAS_NEON) vpx_h_predictor_4x4 = vpx_h_predictor_4x4_neon; |
| 924 vpx_h_predictor_8x8 = vpx_h_predictor_8x8_c; | 925 vpx_h_predictor_8x8 = vpx_h_predictor_8x8_c; |
| 925 if (flags & HAS_NEON) vpx_h_predictor_8x8 = vpx_h_predictor_8x8_neon; | 926 if (flags & HAS_NEON) vpx_h_predictor_8x8 = vpx_h_predictor_8x8_neon; |
| 927 vpx_hadamard_8x8 = vpx_hadamard_8x8_c; |
| 928 if (flags & HAS_NEON) vpx_hadamard_8x8 = vpx_hadamard_8x8_neon; |
| 926 vpx_idct16x16_10_add = vpx_idct16x16_10_add_c; | 929 vpx_idct16x16_10_add = vpx_idct16x16_10_add_c; |
| 927 if (flags & HAS_NEON) vpx_idct16x16_10_add = vpx_idct16x16_10_add_neon; | 930 if (flags & HAS_NEON) vpx_idct16x16_10_add = vpx_idct16x16_10_add_neon; |
| 928 vpx_idct16x16_1_add = vpx_idct16x16_1_add_c; | 931 vpx_idct16x16_1_add = vpx_idct16x16_1_add_c; |
| 929 if (flags & HAS_NEON) vpx_idct16x16_1_add = vpx_idct16x16_1_add_neon; | 932 if (flags & HAS_NEON) vpx_idct16x16_1_add = vpx_idct16x16_1_add_neon; |
| 930 vpx_idct16x16_256_add = vpx_idct16x16_256_add_c; | 933 vpx_idct16x16_256_add = vpx_idct16x16_256_add_c; |
| 931 if (flags & HAS_NEON) vpx_idct16x16_256_add = vpx_idct16x16_256_add_neon; | 934 if (flags & HAS_NEON) vpx_idct16x16_256_add = vpx_idct16x16_256_add_neon; |
| 932 vpx_idct32x32_1024_add = vpx_idct32x32_1024_add_c; | 935 vpx_idct32x32_1024_add = vpx_idct32x32_1024_add_c; |
| 933 if (flags & HAS_NEON) vpx_idct32x32_1024_add = vpx_idct32x32_1024_add_neon; | 936 if (flags & HAS_NEON) vpx_idct32x32_1024_add = vpx_idct32x32_1024_add_neon; |
| 934 vpx_idct32x32_135_add = vpx_idct32x32_135_add_c; | 937 vpx_idct32x32_135_add = vpx_idct32x32_135_add_c; |
| 935 if (flags & HAS_NEON) vpx_idct32x32_135_add = vpx_idct32x32_1024_add_neon; | 938 if (flags & HAS_NEON) vpx_idct32x32_135_add = vpx_idct32x32_1024_add_neon; |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1046 vpx_vector_var = vpx_vector_var_c; | 1049 vpx_vector_var = vpx_vector_var_c; |
| 1047 if (flags & HAS_NEON) vpx_vector_var = vpx_vector_var_neon; | 1050 if (flags & HAS_NEON) vpx_vector_var = vpx_vector_var_neon; |
| 1048 } | 1051 } |
| 1049 #endif | 1052 #endif |
| 1050 | 1053 |
| 1051 #ifdef __cplusplus | 1054 #ifdef __cplusplus |
| 1052 } // extern "C" | 1055 } // extern "C" |
| 1053 #endif | 1056 #endif |
| 1054 | 1057 |
| 1055 #endif | 1058 #endif |
| OLD | NEW |