git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11071 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2003-10-09 23:45:04 +00:00
parent a31340614b
commit 6e824ee6cb
1 changed files with 9 additions and 0 deletions

View File

@ -87,6 +87,15 @@ extern void (*yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint
unsigned int width, unsigned int height,
int lumStride, int chromStride, int srcStride);
/**
*
* 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