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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 | 330 |
331 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st
ride); | 331 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st
ride); |
332 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des
t_stride); | 332 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des
t_stride); |
333 #define vpx_idct32x32_135_add vpx_idct32x32_1024_add_neon | 333 #define vpx_idct32x32_135_add vpx_idct32x32_1024_add_neon |
334 | 334 |
335 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri
de); | 335 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri
de); |
336 void vpx_idct32x32_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s
tride); | 336 void vpx_idct32x32_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s
tride); |
337 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_neon | 337 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_neon |
338 | 338 |
339 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str
ide); | 339 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str
ide); |
340 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des
t_stride); | 340 void vpx_idct32x32_34_add_neon(const tran_low_t *input, uint8_t *dest, int dest_
stride); |
341 #define vpx_idct32x32_34_add vpx_idct32x32_1024_add_neon | 341 #define vpx_idct32x32_34_add vpx_idct32x32_34_add_neon |
342 | 342 |
343 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid
e); | 343 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid
e); |
344 void vpx_idct4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_st
ride); | 344 void vpx_idct4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_st
ride); |
345 #define vpx_idct4x4_16_add vpx_idct4x4_16_add_neon | 345 #define vpx_idct4x4_16_add vpx_idct4x4_16_add_neon |
346 | 346 |
347 void vpx_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
); | 347 void vpx_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
); |
348 void vpx_idct4x4_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_str
ide); | 348 void vpx_idct4x4_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_str
ide); |
349 #define vpx_idct4x4_1_add vpx_idct4x4_1_add_neon | 349 #define vpx_idct4x4_1_add vpx_idct4x4_1_add_neon |
350 | 350 |
351 void vpx_idct8x8_12_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid
e); | 351 void vpx_idct8x8_12_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid
e); |
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
842 (void)flags; | 842 (void)flags; |
843 | 843 |
844 } | 844 } |
845 #endif | 845 #endif |
846 | 846 |
847 #ifdef __cplusplus | 847 #ifdef __cplusplus |
848 } // extern "C" | 848 } // extern "C" |
849 #endif | 849 #endif |
850 | 850 |
851 #endif | 851 #endif |
OLD | NEW |