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 10 matching lines...) Expand all Loading... |
21 struct macroblockd; | 21 struct macroblockd; |
22 | 22 |
23 /* Encoder forward decls */ | 23 /* Encoder forward decls */ |
24 struct macroblock; | 24 struct macroblock; |
25 struct vp9_variance_vtable; | 25 struct vp9_variance_vtable; |
26 struct search_site_config; | 26 struct search_site_config; |
27 struct mv; | 27 struct mv; |
28 union int_mv; | 28 union int_mv; |
29 struct yv12_buffer_config; | 29 struct yv12_buffer_config; |
30 | 30 |
31 void vp9_blend_b_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, i
nt alpha, int stride); | |
32 #define vp9_blend_b vp9_blend_b_c | |
33 | |
34 void vp9_blend_mb_inner_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, in
t v1, int alpha, int stride); | |
35 #define vp9_blend_mb_inner vp9_blend_mb_inner_c | |
36 | |
37 void vp9_blend_mb_outer_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, in
t v1, int alpha, int stride); | |
38 #define vp9_blend_mb_outer vp9_blend_mb_outer_c | |
39 | |
40 int64_t vp9_block_error_c(const int16_t *coeff, const int16_t *dqcoeff, intptr_t
block_size, int64_t *ssz); | 31 int64_t vp9_block_error_c(const int16_t *coeff, const int16_t *dqcoeff, intptr_t
block_size, int64_t *ssz); |
41 #define vp9_block_error vp9_block_error_c | 32 #define vp9_block_error vp9_block_error_c |
42 | 33 |
43 void vp9_convolve8_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptr
diff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter
_y, int y_step_q4, int w, int h); | 34 void vp9_convolve8_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptr
diff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter
_y, int y_step_q4, int w, int h); |
44 #define vp9_convolve8 vp9_convolve8_c | 35 #define vp9_convolve8 vp9_convolve8_c |
45 | 36 |
46 void vp9_convolve8_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi
lter_y, int y_step_q4, int w, int h); | 37 void vp9_convolve8_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi
lter_y, int y_step_q4, int w, int h); |
47 #define vp9_convolve8_avg vp9_convolve8_avg_c | 38 #define vp9_convolve8_avg vp9_convolve8_avg_c |
48 | 39 |
49 void vp9_convolve8_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16
_t *filter_y, int y_step_q4, int w, int h); | 40 void vp9_convolve8_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16
_t *filter_y, int y_step_q4, int w, int h); |
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 static void setup_rtcd_internal(void) | 672 static void setup_rtcd_internal(void) |
682 { | 673 { |
683 } | 674 } |
684 #endif | 675 #endif |
685 | 676 |
686 #ifdef __cplusplus | 677 #ifdef __cplusplus |
687 } // extern "C" | 678 } // extern "C" |
688 #endif | 679 #endif |
689 | 680 |
690 #endif | 681 #endif |
OLD | NEW |