Mercurial > mplayer.hg
changeset 11070:ede278d59026
10l
author | michael |
---|---|
date | Thu, 09 Oct 2003 23:45:04 +0000 |
parents | 71d1a2815e16 |
children | 9db8700a5a16 |
files | postproc/rgb2rgb.h |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/postproc/rgb2rgb.h Thu Oct 09 22:32:30 2003 +0000 +++ b/postproc/rgb2rgb.h Thu Oct 09 23:45:04 2003 +0000 @@ -89,6 +89,15 @@ /** * + * 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