diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-06-27 23:48:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-06-27 23:48:53 +0000 |
commit | b241cbf2cf9b6f98d9788a2d5b03024d6502fa99 (patch) | |
tree | 007e17071bf7f67b0796fb54d76c1e7a7ea6a0a0 /postproc/rgb2rgb.h | |
parent | 81a571a8b372c5821687be907cb6088cac117fb0 (diff) | |
download | ffmpeg-b241cbf2cf9b6f98d9788a2d5b03024d6502fa99.tar.gz |
yvu9 -> yv12 unscaled converter with linear chroma scaling
Originally committed as revision 6583 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r-- | postproc/rgb2rgb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h index 9fb6da6ef1..a0ce006103 100644 --- a/postproc/rgb2rgb.h +++ b/postproc/rgb2rgb.h @@ -41,6 +41,7 @@ extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t 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); +extern void planar2x(const uint8_t *src, uint8_t *dst, int width, int height, int srcStride, int dstStride); extern void interleaveBytes(uint8_t *src1, uint8_t *src2, uint8_t *dst, unsigned width, unsigned height, unsigned src1Stride, |