summaryrefslogtreecommitdiff
path: root/postproc/rgb2rgb.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2001-11-05 18:50:58 +0000
committerMichael Niedermayer <michaelni@gmx.at>2001-11-05 18:50:58 +0000
commitdabcdbc493b02d3b477cb056beaf0fb7a1879c1e (patch)
tree7d478fb4313803a16055d3cf860579d42422bac7 /postproc/rgb2rgb.h
parent42b5fcb890d6558167f5340b225caf149e75b5f7 (diff)
yuy2toyv12 fixed and speedup
Originally committed as revision 2725 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r--postproc/rgb2rgb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h
index db29be3efe..dc900a9744 100644
--- a/postproc/rgb2rgb.h
+++ b/postproc/rgb2rgb.h
@@ -23,6 +23,7 @@ extern void palette8torgb24(const uint8_t *src, uint8_t *dst, unsigned num_pixel
extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
int width, int height, int lumStride, int chromStride, int dstStride);
-extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, unsigned num_pixels);
+extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
+ int width, int height, int lumStride, int chromStride, int srcStride);
#endif