| 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 #ifdef __cplusplus | 10 #ifdef __cplusplus |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 252 |
| 253 void vp9_idct32x32_34_add_c(const int16_t *input, uint8_t *dest, int dest_stride
); | 253 void vp9_idct32x32_34_add_c(const int16_t *input, uint8_t *dest, int dest_stride
); |
| 254 #define vp9_idct32x32_34_add vp9_idct32x32_34_add_c | 254 #define vp9_idct32x32_34_add vp9_idct32x32_34_add_c |
| 255 | 255 |
| 256 void vp9_idct4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride); | 256 void vp9_idct4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride); |
| 257 #define vp9_idct4x4_16_add vp9_idct4x4_16_add_c | 257 #define vp9_idct4x4_16_add vp9_idct4x4_16_add_c |
| 258 | 258 |
| 259 void vp9_idct4x4_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride); | 259 void vp9_idct4x4_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride); |
| 260 #define vp9_idct4x4_1_add vp9_idct4x4_1_add_c | 260 #define vp9_idct4x4_1_add vp9_idct4x4_1_add_c |
| 261 | 261 |
| 262 void vp9_idct8x8_10_add_c(const int16_t *input, uint8_t *dest, int dest_stride); | 262 void vp9_idct8x8_12_add_c(const int16_t *input, uint8_t *dest, int dest_stride); |
| 263 #define vp9_idct8x8_10_add vp9_idct8x8_10_add_c | 263 #define vp9_idct8x8_12_add vp9_idct8x8_12_add_c |
| 264 | 264 |
| 265 void vp9_idct8x8_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride); | 265 void vp9_idct8x8_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride); |
| 266 #define vp9_idct8x8_1_add vp9_idct8x8_1_add_c | 266 #define vp9_idct8x8_1_add vp9_idct8x8_1_add_c |
| 267 | 267 |
| 268 void vp9_idct8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride); | 268 void vp9_idct8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride); |
| 269 #define vp9_idct8x8_64_add vp9_idct8x8_64_add_c | 269 #define vp9_idct8x8_64_add vp9_idct8x8_64_add_c |
| 270 | 270 |
| 271 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, in
t tx_type); | 271 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, in
t tx_type); |
| 272 #define vp9_iht16x16_256_add vp9_iht16x16_256_add_c | 272 #define vp9_iht16x16_256_add vp9_iht16x16_256_add_c |
| 273 | 273 |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 static void setup_rtcd_internal(void) | 657 static void setup_rtcd_internal(void) |
| 658 { | 658 { |
| 659 } | 659 } |
| 660 #endif | 660 #endif |
| 661 | 661 |
| 662 #ifdef __cplusplus | 662 #ifdef __cplusplus |
| 663 } // extern "C" | 663 } // extern "C" |
| 664 #endif | 664 #endif |
| 665 | 665 |
| 666 #endif | 666 #endif |
| OLD | NEW |