| OLD | NEW |
| 1 #ifndef VP8_RTCD_H_ | 1 #ifndef VP8_RTCD_H_ |
| 2 #define VP8_RTCD_H_ | 2 #define VP8_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 /* |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 | 160 |
| 161 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 161 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 162 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c | 162 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c |
| 163 | 163 |
| 164 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 164 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 165 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_c | 165 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_c |
| 166 | 166 |
| 167 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 167 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 168 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_c | 168 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_c |
| 169 | 169 |
| 170 void vp8_temporal_filter_apply_c(unsigned char *frame1, unsigned int stride, uns
igned char *frame2, unsigned int block_size, int strength, int filter_weight, un
signed int *accumulator, unsigned short *count); | |
| 171 #define vp8_temporal_filter_apply vp8_temporal_filter_apply_c | |
| 172 | |
| 173 void vp8_rtcd(void); | 170 void vp8_rtcd(void); |
| 174 | 171 |
| 175 #include "vpx_config.h" | 172 #include "vpx_config.h" |
| 176 | 173 |
| 177 #ifdef RTCD_C | 174 #ifdef RTCD_C |
| 178 static void setup_rtcd_internal(void) | 175 static void setup_rtcd_internal(void) |
| 179 { | 176 { |
| 180 } | 177 } |
| 181 #endif | 178 #endif |
| 182 | 179 |
| 183 #ifdef __cplusplus | 180 #ifdef __cplusplus |
| 184 } // extern "C" | 181 } // extern "C" |
| 185 #endif | 182 #endif |
| 186 | 183 |
| 187 #endif | 184 #endif |
| OLD | NEW |