Commit 03daf499 authored by glantau's avatar glantau

new img_convert API - added deinterlacing filter


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@66 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8e61049a
......@@ -147,7 +147,17 @@ void img_resample(ImgReSampleContext *s,
void img_resample_close(ImgReSampleContext *s);
int img_convert_to_yuv420(UINT8 *img_out, UINT8 *img,
void avpicture_fill(AVPicture *picture, UINT8 *ptr,
int pix_fmt, int width, int height);
int avpicture_get_size(int pix_fmt, int width, int height);
/* convert among pixel formats */
int img_convert(AVPicture *dst, int dst_pix_fmt,
AVPicture *src, int pix_fmt,
int width, int height);
/* deinterlace a picture */
int avpicture_deinterlace(AVPicture *dst, AVPicture *src,
int pix_fmt, int width, int height);
/* external high level API */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment