diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-10-09 23:45:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-09 23:45:04 +0000 |
commit | 2549c2bc00d14e2d564f9d1c78050cd7464f28af (patch) | |
tree | fddc9f002e05ed39c5f5e351d7f8293e8a606bbd /postproc | |
parent | caeaabe7d019c423c73f0330f719673872e65cbc (diff) | |
download | ffmpeg-streaming-2549c2bc00d14e2d564f9d1c78050cd7464f28af.zip ffmpeg-streaming-2549c2bc00d14e2d564f9d1c78050cd7464f28af.tar.gz |
10l
Originally committed as revision 11071 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/rgb2rgb.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h index e604d29..78d43d2 100644 --- a/postproc/rgb2rgb.h +++ b/postproc/rgb2rgb.h @@ -89,6 +89,15 @@ extern void (*yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint /** * + * height should be a multiple of 2 and width should be a multiple of 16 (if this is a + * problem for anyone then tell me, and ill fix it) + */ +extern void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, + unsigned int width, unsigned int height, + int lumStride, int chromStride, int dstStride); + +/** + * * height should be a multiple of 2 and width should be a multiple of 2 (if this is a * problem for anyone then tell me, and ill fix it) * chrominance data is only taken from every secound line others are ignored FIXME write HQ version |