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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 static void setup_rtcd_internal(void) | 46 static void setup_rtcd_internal(void) |
47 { | 47 { |
48 int flags = x86_simd_caps(); | 48 int flags = x86_simd_caps(); |
49 | 49 |
50 (void)flags; | 50 (void)flags; |
51 | 51 |
52 | 52 |
53 } | 53 } |
54 #endif | 54 #endif |
55 #endif | 55 #endif |
OLD | NEW |