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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 if (flags & HAS_NEON) vp8_yv12_extend_frame_borders = vp8_yv12_extend_frame_
borders_neon; | 64 if (flags & HAS_NEON) vp8_yv12_extend_frame_borders = vp8_yv12_extend_frame_
borders_neon; |
65 | 65 |
66 vp8_yv12_copy_frame = vp8_yv12_copy_frame_c; | 66 vp8_yv12_copy_frame = vp8_yv12_copy_frame_c; |
67 if (flags & HAS_NEON) vp8_yv12_copy_frame = vp8_yv12_copy_frame_neon; | 67 if (flags & HAS_NEON) vp8_yv12_copy_frame = vp8_yv12_copy_frame_neon; |
68 | 68 |
69 vp8_yv12_copy_y = vp8_yv12_copy_y_c; | 69 vp8_yv12_copy_y = vp8_yv12_copy_y_c; |
70 if (flags & HAS_NEON) vp8_yv12_copy_y = vp8_yv12_copy_y_neon; | 70 if (flags & HAS_NEON) vp8_yv12_copy_y = vp8_yv12_copy_y_neon; |
71 } | 71 } |
72 #endif | 72 #endif |
73 #endif | 73 #endif |
OLD | NEW |