| OLD | NEW |
| 1 #ifndef VP9_RTCD_H_ | 1 #ifndef VP9_RTCD_H_ |
| 2 #define VP9_RTCD_H_ | 2 #define VP9_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 vp9_short_idct8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride); | 296 void vp9_short_idct8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride); |
| 297 void vp9_short_idct8x8_add_neon(int16_t *input, uint8_t *dest, int dest_stride); | 297 void vp9_short_idct8x8_add_neon(int16_t *input, uint8_t *dest, int dest_stride); |
| 298 #define vp9_short_idct8x8_add vp9_short_idct8x8_add_neon | 298 #define vp9_short_idct8x8_add vp9_short_idct8x8_add_neon |
| 299 | 299 |
| 300 void vp9_short_idct10_8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride); | 300 void vp9_short_idct10_8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride); |
| 301 void vp9_short_idct10_8x8_add_neon(int16_t *input, uint8_t *dest, int dest_strid
e); | 301 void vp9_short_idct10_8x8_add_neon(int16_t *input, uint8_t *dest, int dest_strid
e); |
| 302 #define vp9_short_idct10_8x8_add vp9_short_idct10_8x8_add_neon | 302 #define vp9_short_idct10_8x8_add vp9_short_idct10_8x8_add_neon |
| 303 | 303 |
| 304 void vp9_short_idct16x16_1_add_c(int16_t *input, uint8_t *dest, int dest_stride)
; | 304 void vp9_short_idct16x16_1_add_c(int16_t *input, uint8_t *dest, int dest_stride)
; |
| 305 #define vp9_short_idct16x16_1_add vp9_short_idct16x16_1_add_c | 305 void vp9_short_idct16x16_1_add_neon(int16_t *input, uint8_t *dest, int dest_stri
de); |
| 306 #define vp9_short_idct16x16_1_add vp9_short_idct16x16_1_add_neon |
| 306 | 307 |
| 307 void vp9_short_idct16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride); | 308 void vp9_short_idct16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride); |
| 308 void vp9_short_idct16x16_add_neon(int16_t *input, uint8_t *dest, int dest_stride
); | 309 void vp9_short_idct16x16_add_neon(int16_t *input, uint8_t *dest, int dest_stride
); |
| 309 #define vp9_short_idct16x16_add vp9_short_idct16x16_add_neon | 310 #define vp9_short_idct16x16_add vp9_short_idct16x16_add_neon |
| 310 | 311 |
| 311 void vp9_short_idct10_16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride
); | 312 void vp9_short_idct10_16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride
); |
| 312 void vp9_short_idct10_16x16_add_neon(int16_t *input, uint8_t *dest, int dest_str
ide); | 313 void vp9_short_idct10_16x16_add_neon(int16_t *input, uint8_t *dest, int dest_str
ide); |
| 313 #define vp9_short_idct10_16x16_add vp9_short_idct10_16x16_add_neon | 314 #define vp9_short_idct10_16x16_add vp9_short_idct10_16x16_add_neon |
| 314 | 315 |
| 315 void vp9_short_idct32x32_add_c(int16_t *input, uint8_t *dest, int dest_stride); | 316 void vp9_short_idct32x32_add_c(int16_t *input, uint8_t *dest, int dest_stride); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 344 static void setup_rtcd_internal(void) | 345 static void setup_rtcd_internal(void) |
| 345 { | 346 { |
| 346 int flags = arm_cpu_caps(); | 347 int flags = arm_cpu_caps(); |
| 347 | 348 |
| 348 (void)flags; | 349 (void)flags; |
| 349 | 350 |
| 350 | 351 |
| 351 } | 352 } |
| 352 #endif | 353 #endif |
| 353 #endif | 354 #endif |
| OLD | NEW |