| 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 RTCD_EXTERN void (*vp9_short_idct8x8_add)(int16_t *input, uint8_t *dest, int des
t_stride); | 298 RTCD_EXTERN void (*vp9_short_idct8x8_add)(int16_t *input, uint8_t *dest, int des
t_stride); |
| 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 RTCD_EXTERN void (*vp9_short_idct10_8x8_add)(int16_t *input, uint8_t *dest, int
dest_stride); | 302 RTCD_EXTERN void (*vp9_short_idct10_8x8_add)(int16_t *input, uint8_t *dest, int
dest_stride); |
| 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 RTCD_EXTERN void (*vp9_short_idct16x16_1_add)(int16_t *input, uint8_t *dest, int
dest_stride); |
| 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 RTCD_EXTERN void (*vp9_short_idct16x16_add)(int16_t *input, uint8_t *dest, int d
est_stride); | 310 RTCD_EXTERN void (*vp9_short_idct16x16_add)(int16_t *input, uint8_t *dest, int d
est_stride); |
| 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 RTCD_EXTERN void (*vp9_short_idct10_16x16_add)(int16_t *input, uint8_t *dest, in
t dest_stride); | 314 RTCD_EXTERN void (*vp9_short_idct10_16x16_add)(int16_t *input, uint8_t *dest, in
t dest_stride); |
| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 | 470 |
| 470 vp9_short_idct8x8_1_add = vp9_short_idct8x8_1_add_c; | 471 vp9_short_idct8x8_1_add = vp9_short_idct8x8_1_add_c; |
| 471 if (flags & HAS_NEON) vp9_short_idct8x8_1_add = vp9_short_idct8x8_1_add_neon
; | 472 if (flags & HAS_NEON) vp9_short_idct8x8_1_add = vp9_short_idct8x8_1_add_neon
; |
| 472 | 473 |
| 473 vp9_short_idct8x8_add = vp9_short_idct8x8_add_c; | 474 vp9_short_idct8x8_add = vp9_short_idct8x8_add_c; |
| 474 if (flags & HAS_NEON) vp9_short_idct8x8_add = vp9_short_idct8x8_add_neon; | 475 if (flags & HAS_NEON) vp9_short_idct8x8_add = vp9_short_idct8x8_add_neon; |
| 475 | 476 |
| 476 vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_c; | 477 vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_c; |
| 477 if (flags & HAS_NEON) vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_ne
on; | 478 if (flags & HAS_NEON) vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_ne
on; |
| 478 | 479 |
| 480 vp9_short_idct16x16_1_add = vp9_short_idct16x16_1_add_c; |
| 481 if (flags & HAS_NEON) vp9_short_idct16x16_1_add = vp9_short_idct16x16_1_add_
neon; |
| 479 | 482 |
| 480 vp9_short_idct16x16_add = vp9_short_idct16x16_add_c; | 483 vp9_short_idct16x16_add = vp9_short_idct16x16_add_c; |
| 481 if (flags & HAS_NEON) vp9_short_idct16x16_add = vp9_short_idct16x16_add_neon
; | 484 if (flags & HAS_NEON) vp9_short_idct16x16_add = vp9_short_idct16x16_add_neon
; |
| 482 | 485 |
| 483 vp9_short_idct10_16x16_add = vp9_short_idct10_16x16_add_c; | 486 vp9_short_idct10_16x16_add = vp9_short_idct10_16x16_add_c; |
| 484 if (flags & HAS_NEON) vp9_short_idct10_16x16_add = vp9_short_idct10_16x16_ad
d_neon; | 487 if (flags & HAS_NEON) vp9_short_idct10_16x16_add = vp9_short_idct10_16x16_ad
d_neon; |
| 485 } | 488 } |
| 486 #endif | 489 #endif |
| 487 #endif | 490 #endif |
| OLD | NEW |