summaryrefslogtreecommitdiffstats
path: root/postproc/rgb2rgb.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-20 17:30:59 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-20 17:30:59 +0000
commit31eee016245097dd5ec3775f6c6052c261799edb (patch)
treeca30524dfc822d77a7a5f4117507152f6448455e /postproc/rgb2rgb.h
parentef33d014c62967bc3478b1e50ecb8836d23a0359 (diff)
downloadmpv-31eee016245097dd5ec3775f6c6052c261799edb.tar.bz2
mpv-31eee016245097dd5ec3775f6c6052c261799edb.tar.xz
rgb24toyv12 bugfix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3634 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r--postproc/rgb2rgb.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h
index 3b8e9abe19..5c3b3f84e2 100644
--- a/postproc/rgb2rgb.h
+++ b/postproc/rgb2rgb.h
@@ -30,6 +30,9 @@ extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *
extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
unsigned int width, unsigned int height,
unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
+extern void rgb24toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
+ unsigned int width, unsigned int height,
+ unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
#define MODE_RGB 0x1
#define MODE_BGR 0x2