2001-10-15 19:06:16 +00:00
|
|
|
|
2001-12-02 20:03:26 +00:00
|
|
|
#define SWS_FAST_BILINEAR 0
|
|
|
|
#define SWS_BILINEAR 1
|
|
|
|
#define SWS_BICUBIC 2
|
|
|
|
|
2001-10-28 18:30:59 +00:00
|
|
|
// *** bilinear scaling and yuv->rgb & yuv->yuv conversion of yv12 slices:
|
2001-10-15 19:06:16 +00:00
|
|
|
// *** Note: it's called multiple times while decoding a frame, first time y==0
|
|
|
|
// *** Designed to upscale, but may work for downscale too.
|
2001-10-28 18:30:59 +00:00
|
|
|
// dstbpp == 12 -> yv12 output
|
2001-11-29 20:19:17 +00:00
|
|
|
void SwScale_YV12slice(unsigned char* srcptr[],int stride[], int srcSliceY,
|
|
|
|
int srcSliceH, uint8_t* dstptr[], int dststride, int dstbpp,
|
|
|
|
int srcW, int srcH, int dstW, int dstH);
|
2001-10-15 19:06:16 +00:00
|
|
|
// generating tables
|
2001-12-06 00:10:42 +00:00
|
|
|
void SwScale_Init();
|