| 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 /* |
| 11 * VP8 | 11 * VP8 |
| 12 */ | 12 */ |
| 13 | 13 |
| 14 struct blockd; | 14 struct blockd; |
| 15 struct macroblockd; | 15 struct macroblockd; |
| 16 struct loop_filter_info; | 16 struct loop_filter_info; |
| 17 | 17 |
| 18 /* Encoder forward decls */ | 18 /* Encoder forward decls */ |
| 19 struct block; | 19 struct block; |
| 20 struct macroblock; | 20 struct macroblock; |
| 21 struct variance_vtable; | 21 struct variance_vtable; |
| 22 union int_mv; | 22 union int_mv; |
| 23 struct yv12_buffer_config; | 23 struct yv12_buffer_config; |
| 24 | 24 |
| 25 void vp8_clear_system_state_c(); |
| 26 #define vp8_clear_system_state vp8_clear_system_state_c |
| 27 |
| 25 void vp8_dequantize_b_c(struct blockd*, short *dqc); | 28 void vp8_dequantize_b_c(struct blockd*, short *dqc); |
| 26 #define vp8_dequantize_b vp8_dequantize_b_c | 29 #define vp8_dequantize_b vp8_dequantize_b_c |
| 27 | 30 |
| 28 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int
stride); | 31 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int
stride); |
| 29 #define vp8_dequant_idct_add vp8_dequant_idct_add_c | 32 #define vp8_dequant_idct_add vp8_dequant_idct_add_c |
| 30 | 33 |
| 31 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int
stride, char *eobs); | 34 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int
stride, char *eobs); |
| 32 #define vp8_dequant_idct_add_y_block vp8_dequant_idct_add_y_block_c | 35 #define vp8_dequant_idct_add_y_block vp8_dequant_idct_add_y_block_c |
| 33 | 36 |
| 34 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u,
unsigned char *dst_v, int stride, char *eobs); | 37 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u,
unsigned char *dst_v, int stride, char *eobs); |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 void vp8_rtcd(void); | 325 void vp8_rtcd(void); |
| 323 #include "vpx_config.h" | 326 #include "vpx_config.h" |
| 324 | 327 |
| 325 #ifdef RTCD_C | 328 #ifdef RTCD_C |
| 326 static void setup_rtcd_internal(void) | 329 static void setup_rtcd_internal(void) |
| 327 { | 330 { |
| 328 | 331 |
| 329 } | 332 } |
| 330 #endif | 333 #endif |
| 331 #endif | 334 #endif |
| OLD | NEW |