| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 void vpx_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride); | 221 void vpx_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride); |
| 222 #define vpx_fdct32x32 vpx_fdct32x32_c | 222 #define vpx_fdct32x32 vpx_fdct32x32_c |
| 223 | 223 |
| 224 void vpx_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride); | 224 void vpx_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride); |
| 225 #define vpx_fdct32x32_1 vpx_fdct32x32_1_c | 225 #define vpx_fdct32x32_1 vpx_fdct32x32_1_c |
| 226 | 226 |
| 227 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride); | 227 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride); |
| 228 #define vpx_fdct32x32_rd vpx_fdct32x32_rd_c | 228 #define vpx_fdct32x32_rd vpx_fdct32x32_rd_c |
| 229 | 229 |
| 230 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride); | 230 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride); |
| 231 #define vpx_fdct4x4 vpx_fdct4x4_c | 231 void vpx_fdct4x4_neon(const int16_t *input, tran_low_t *output, int stride); |
| 232 #define vpx_fdct4x4 vpx_fdct4x4_neon |
| 232 | 233 |
| 233 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride); | 234 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride); |
| 234 #define vpx_fdct4x4_1 vpx_fdct4x4_1_c | 235 #define vpx_fdct4x4_1 vpx_fdct4x4_1_c |
| 235 | 236 |
| 236 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride); | 237 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride); |
| 237 void vpx_fdct8x8_neon(const int16_t *input, tran_low_t *output, int stride); | 238 void vpx_fdct8x8_neon(const int16_t *input, tran_low_t *output, int stride); |
| 238 #define vpx_fdct8x8 vpx_fdct8x8_neon | 239 #define vpx_fdct8x8 vpx_fdct8x8_neon |
| 239 | 240 |
| 240 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride); | 241 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride); |
| 241 void vpx_fdct8x8_1_neon(const int16_t *input, tran_low_t *output, int stride); | 242 void vpx_fdct8x8_1_neon(const int16_t *input, tran_low_t *output, int stride); |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 (void)flags; | 831 (void)flags; |
| 831 | 832 |
| 832 } | 833 } |
| 833 #endif | 834 #endif |
| 834 | 835 |
| 835 #ifdef __cplusplus | 836 #ifdef __cplusplus |
| 836 } // extern "C" | 837 } // extern "C" |
| 837 #endif | 838 #endif |
| 838 | 839 |
| 839 #endif | 840 #endif |
| OLD | NEW |