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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 | 292 |
293 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch,
int tx_type); | 293 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch,
int tx_type); |
294 #define vp9_iht16x16_256_add vp9_iht16x16_256_add_c | 294 #define vp9_iht16x16_256_add vp9_iht16x16_256_add_c |
295 | 295 |
296 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
, int tx_type); | 296 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
, int tx_type); |
297 #define vp9_iht4x4_16_add vp9_iht4x4_16_add_c | 297 #define vp9_iht4x4_16_add vp9_iht4x4_16_add_c |
298 | 298 |
299 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
, int tx_type); | 299 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
, int tx_type); |
300 #define vp9_iht8x8_64_add vp9_iht8x8_64_add_c | 300 #define vp9_iht8x8_64_add vp9_iht8x8_64_add_c |
301 | 301 |
| 302 int16_t vp9_int_pro_col_c(uint8_t const *ref, const int width); |
| 303 #define vp9_int_pro_col vp9_int_pro_col_c |
| 304 |
| 305 void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride,
const int height); |
| 306 #define vp9_int_pro_row vp9_int_pro_row_c |
| 307 |
302 void vp9_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid
e); | 308 void vp9_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid
e); |
303 #define vp9_iwht4x4_16_add vp9_iwht4x4_16_add_c | 309 #define vp9_iwht4x4_16_add vp9_iwht4x4_16_add_c |
304 | 310 |
305 void vp9_iwht4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
); | 311 void vp9_iwht4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
); |
306 #define vp9_iwht4x4_1_add vp9_iwht4x4_1_add_c | 312 #define vp9_iwht4x4_1_add vp9_iwht4x4_1_add_c |
307 | 313 |
308 void vp9_lpf_horizontal_16_c(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); | 314 void vp9_lpf_horizontal_16_c(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); |
309 #define vp9_lpf_horizontal_16 vp9_lpf_horizontal_16_c | 315 #define vp9_lpf_horizontal_16 vp9_lpf_horizontal_16_c |
310 | 316 |
311 void vp9_lpf_horizontal_4_c(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); | 317 void vp9_lpf_horizontal_4_c(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 | 673 |
668 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 674 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
669 #define vp9_variance8x16 vp9_variance8x16_c | 675 #define vp9_variance8x16 vp9_variance8x16_c |
670 | 676 |
671 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 677 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
672 #define vp9_variance8x4 vp9_variance8x4_c | 678 #define vp9_variance8x4 vp9_variance8x4_c |
673 | 679 |
674 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 680 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
675 #define vp9_variance8x8 vp9_variance8x8_c | 681 #define vp9_variance8x8 vp9_variance8x8_c |
676 | 682 |
| 683 int vp9_vector_sad_c(int16_t const *ref, int16_t const *src, const int width); |
| 684 #define vp9_vector_sad vp9_vector_sad_c |
| 685 |
677 void vp9_rtcd(void); | 686 void vp9_rtcd(void); |
678 | 687 |
679 #include "vpx_config.h" | 688 #include "vpx_config.h" |
680 | 689 |
681 #ifdef RTCD_C | 690 #ifdef RTCD_C |
682 static void setup_rtcd_internal(void) | 691 static void setup_rtcd_internal(void) |
683 { | 692 { |
684 } | 693 } |
685 #endif | 694 #endif |
686 | 695 |
687 #ifdef __cplusplus | 696 #ifdef __cplusplus |
688 } // extern "C" | 697 } // extern "C" |
689 #endif | 698 #endif |
690 | 699 |
691 #endif | 700 #endif |
OLD | NEW |