OLD | NEW |
1 #ifndef VPX_SCALE_RTCD_ | 1 #ifndef VPX_SCALE_RTCD_H_ |
2 #define VPX_SCALE_RTCD_ | 2 #define VPX_SCALE_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 struct yv12_buffer_config; | 10 struct yv12_buffer_config; |
11 | 11 |
12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int s
ource_width, unsigned char *dest, unsigned int dest_width); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 static void setup_rtcd_internal(void) | 50 static void setup_rtcd_internal(void) |
51 { | 51 { |
52 int flags = arm_cpu_caps(); | 52 int flags = arm_cpu_caps(); |
53 | 53 |
54 (void)flags; | 54 (void)flags; |
55 | 55 |
56 | 56 |
57 } | 57 } |
58 #endif | 58 #endif |
59 #endif | 59 #endif |
OLD | NEW |