diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-04-13 02:21:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-04-13 02:21:12 +0000 |
commit | b1ec5875a63d5cf61629ff69fb337c6d96e7b964 (patch) | |
tree | e0833e6b05c1dbcd15ead4f768153b1b47b94241 /postproc/rgb2rgb.h | |
parent | 74d3583521de27a6c6018a647362a1974f3e2b58 (diff) | |
download | ffmpeg-b1ec5875a63d5cf61629ff69fb337c6d96e7b964.tar.gz |
yuv422p -> yuy2 (untested)
Originally committed as revision 5589 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 244ed1ed46..fb4f04590d 100644 --- a/postproc/rgb2rgb.h +++ b/postproc/rgb2rgb.h @@ -28,6 +28,9 @@ 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, unsigned int width, unsigned int height, unsigned int lumStride, unsigned int chromStride, unsigned int dstStride); +extern void yuv422ptoyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, + unsigned int width, unsigned int height, + unsigned int lumStride, unsigned int chromStride, unsigned int dstStride); 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); |