diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2001-12-20 17:30:59 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2001-12-20 17:30:59 +0000 |
commit | aa21f0c389d739f613d56c389e7ffe6b2dac6829 (patch) | |
tree | 8550938ebe032a1623ff51dffadabb84727e67de /postproc/rgb2rgb.h | |
parent | 393fe8dd8ee2bd70f509587f3d212c2dd183837e (diff) | |
download | ffmpeg-aa21f0c389d739f613d56c389e7ffe6b2dac6829.tar.gz |
rgb24toyv12 bugfix
Originally committed as revision 3634 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r-- | postproc/rgb2rgb.h | 3 |
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 |