summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-10-09 23:45:04 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-10-09 23:45:04 +0000
commit6e824ee6cbf006d6dffc333c2f276957af34893e (patch)
treecf0fff8e08ec51fc80ee4b90bf52c21c7da14fdf /postproc
parenta31340614beb52e718b1dbc853cd507452c444f2 (diff)
downloadmpv-6e824ee6cbf006d6dffc333c2f276957af34893e.tar.bz2
mpv-6e824ee6cbf006d6dffc333c2f276957af34893e.tar.xz
10l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11071 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/rgb2rgb.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h
index e604d294bd..78d43d2a01 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