summaryrefslogtreecommitdiffstats
path: root/postproc/rgb2rgb.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-05 18:50:58 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-05 18:50:58 +0000
commitbc8918936a039eadef6aafd088e8979dfed5db05 (patch)
tree731538c711d0e281adfa49f35077f233b8a0a27c /postproc/rgb2rgb.h
parente550a5928f0fa05e4eada0386e0cef28f657cbb6 (diff)
downloadmpv-bc8918936a039eadef6aafd088e8979dfed5db05.tar.bz2
mpv-bc8918936a039eadef6aafd088e8979dfed5db05.tar.xz
yuy2toyv12 fixed and speedup
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2725 b3059339-0415-0410-9bf9-f77b7e298cf2
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