OLD | NEW |
1 #ifndef VP__RTCD_ | 1 #ifndef VP9_RTCD_H_ |
2 #define VP__RTCD_ | 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 /* |
11 * VP9 | 11 * VP9 |
12 */ | 12 */ |
13 | 13 |
14 #include "vpx/vpx_integer.h" | 14 #include "vpx/vpx_integer.h" |
15 | 15 |
16 struct loop_filter_info; | 16 struct loop_filter_info; |
17 struct blockd; | 17 struct blockd; |
18 struct macroblockd; | 18 struct macroblockd; |
19 struct loop_filter_info; | 19 struct loop_filter_info; |
20 | 20 |
21 /* Encoder forward decls */ | 21 /* Encoder forward decls */ |
22 struct block; | 22 struct block; |
23 struct macroblock; | 23 struct macroblock; |
24 struct variance_vtable; | 24 struct vp9_variance_vtable; |
25 | 25 |
26 #define DEC_MVCOSTS int *mvjcost, int *mvcost[2] | 26 #define DEC_MVCOSTS int *mvjcost, int *mvcost[2] |
27 union int_mv; | 27 union int_mv; |
28 struct yv12_buffer_config; | 28 struct yv12_buffer_config; |
29 | 29 |
30 void vp9_filter_block2d_4x4_8_c(const uint8_t *src_ptr, const unsigned int src_s
tride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, uint8
_t *dst_ptr, unsigned int dst_stride); | 30 void vp9_filter_block2d_4x4_8_c(const uint8_t *src_ptr, const unsigned int src_s
tride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, uint8
_t *dst_ptr, unsigned int dst_stride); |
31 #define vp9_filter_block2d_4x4_8 vp9_filter_block2d_4x4_8_c | 31 #define vp9_filter_block2d_4x4_8 vp9_filter_block2d_4x4_8_c |
32 | 32 |
33 void vp9_filter_block2d_8x4_8_c(const uint8_t *src_ptr, const unsigned int src_s
tride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, uint8
_t *dst_ptr, unsigned int dst_stride); | 33 void vp9_filter_block2d_8x4_8_c(const uint8_t *src_ptr, const unsigned int src_s
tride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, uint8
_t *dst_ptr, unsigned int dst_stride); |
34 #define vp9_filter_block2d_8x4_8 vp9_filter_block2d_8x4_8_c | 34 #define vp9_filter_block2d_8x4_8 vp9_filter_block2d_8x4_8_c |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 static void setup_rtcd_internal(void) | 389 static void setup_rtcd_internal(void) |
390 { | 390 { |
391 int flags = arm_cpu_caps(); | 391 int flags = arm_cpu_caps(); |
392 | 392 |
393 (void)flags; | 393 (void)flags; |
394 | 394 |
395 | 395 |
396 } | 396 } |
397 #endif | 397 #endif |
398 #endif | 398 #endif |
OLD | NEW |