2013-12-06 11:19:00 +00:00
|
|
|
#ifndef VPX_SCALE_RTCD_H_
|
|
|
|
#define VPX_SCALE_RTCD_H_
|
|
|
|
|
|
|
|
#ifdef RTCD_C
|
|
|
|
#define RTCD_EXTERN
|
|
|
|
#else
|
|
|
|
#define RTCD_EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2014-11-27 21:15:00 +00:00
|
|
|
struct yv12_buffer_config;
|
|
|
|
|
2014-10-07 16:49:40 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2013-12-06 11:19:00 +00:00
|
|
|
|
2014-10-07 16:49:40 +00:00
|
|
|
void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
|
|
|
|
#define vp8_horizontal_line_2_1_scale vp8_horizontal_line_2_1_scale_c
|
2013-12-06 11:19:00 +00:00
|
|
|
|
|
|
|
void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
|
|
|
|
#define vp8_horizontal_line_5_3_scale vp8_horizontal_line_5_3_scale_c
|
|
|
|
|
2014-10-07 16:49:40 +00:00
|
|
|
void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
|
|
|
|
#define vp8_horizontal_line_5_4_scale vp8_horizontal_line_5_4_scale_c
|
2013-12-06 11:19:00 +00:00
|
|
|
|
|
|
|
void vp8_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width);
|
|
|
|
#define vp8_vertical_band_2_1_scale vp8_vertical_band_2_1_scale_c
|
|
|
|
|
|
|
|
void vp8_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width);
|
|
|
|
#define vp8_vertical_band_2_1_scale_i vp8_vertical_band_2_1_scale_i_c
|
|
|
|
|
2014-10-07 16:49:40 +00:00
|
|
|
void vp8_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width);
|
|
|
|
#define vp8_vertical_band_5_3_scale vp8_vertical_band_5_3_scale_c
|
|
|
|
|
|
|
|
void vp8_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width);
|
|
|
|
#define vp8_vertical_band_5_4_scale vp8_vertical_band_5_4_scale_c
|
2013-12-06 11:19:00 +00:00
|
|
|
|
|
|
|
void vp8_yv12_copy_frame_c(const struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc);
|
|
|
|
#define vp8_yv12_copy_frame vp8_yv12_copy_frame_c
|
|
|
|
|
2014-10-07 16:49:40 +00:00
|
|
|
void vp8_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf);
|
|
|
|
#define vp8_yv12_extend_frame_borders vp8_yv12_extend_frame_borders_c
|
2013-12-06 11:19:00 +00:00
|
|
|
|
2014-10-07 16:49:40 +00:00
|
|
|
void vp9_extend_frame_borders_c(struct yv12_buffer_config *ybf);
|
2013-12-06 11:19:00 +00:00
|
|
|
#define vp9_extend_frame_borders vp9_extend_frame_borders_c
|
|
|
|
|
2014-10-07 16:49:40 +00:00
|
|
|
void vp9_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf);
|
2013-12-06 11:19:00 +00:00
|
|
|
#define vp9_extend_frame_inner_borders vp9_extend_frame_inner_borders_c
|
|
|
|
|
2014-10-07 16:49:40 +00:00
|
|
|
void vpx_yv12_copy_y_c(const struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc);
|
|
|
|
#define vpx_yv12_copy_y vpx_yv12_copy_y_c
|
|
|
|
|
2013-12-06 11:19:00 +00:00
|
|
|
void vpx_scale_rtcd(void);
|
2014-10-07 16:49:40 +00:00
|
|
|
|
2013-12-06 11:19:00 +00:00
|
|
|
#include "vpx_config.h"
|
|
|
|
|
|
|
|
#ifdef RTCD_C
|
|
|
|
static void setup_rtcd_internal(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
2014-10-07 16:49:40 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2013-12-06 11:19:00 +00:00
|
|
|
#endif
|