summaryrefslogtreecommitdiff
path: root/postproc/rgb2rgb.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2001-11-05 00:45:55 +0000
committerMichael Niedermayer <michaelni@gmx.at>2001-11-05 00:45:55 +0000
commitd9d58d172eaa22c85864efd97fdce980616fe6b5 (patch)
tree33091000634cd8b1a73f0561934d5ce9f01837c1 /postproc/rgb2rgb.h
parent9b2c28e6edbb43e00e0b2d99b95567189cd46e91 (diff)
yv12 <-> yuy2 in C
Originally committed as revision 2702 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r--postproc/rgb2rgb.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h
index 0f7c8141a0..d6f8f4c616 100644
--- a/postproc/rgb2rgb.h
+++ b/postproc/rgb2rgb.h
@@ -18,4 +18,8 @@ void palette8torgb16(uint8_t *src, uint8_t *dst, int src_size, uint8_t *palette)
void palette8torgb15(uint8_t *src, uint8_t *dst, int src_size, uint8_t *palette);
void palette8torgb24(uint8_t *src, uint8_t *dst, int src_size, uint8_t *palette);
+void yv12toyuy2(uint8_t *ysrc, uint8_t *usrc, uint8_t *vsrc, uint8_t *dst, int src_size);
+void yuy2toyv12(uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, int src_size);
+
+
#endif