diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-09-10 00:02:31 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-09-10 00:02:31 +0000 |
commit | 58f0ec5ff60dd17fab7d6fe9c6f2694480cb841f (patch) | |
tree | feadfd8b537505370d81e5fefa63846a9be6af12 /libswscale/rgb2rgb.h | |
parent | cbcb408ff6e83cc6fb38a281640df20812a40b85 (diff) | |
download | ffmpeg-58f0ec5ff60dd17fab7d6fe9c6f2694480cb841f.tar.gz |
spelling/wording cosmetics
Originally committed as revision 27563 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/rgb2rgb.h')
-rw-r--r-- | libswscale/rgb2rgb.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h index 5d371acbc3..11c0d8e65f 100644 --- a/libswscale/rgb2rgb.h +++ b/libswscale/rgb2rgb.h @@ -74,7 +74,7 @@ extern void palette8tobgr15(const uint8_t *src, uint8_t *dst, long num_pixels, c * Height should be a multiple of 2 and width should be a multiple of 16. * (If this is a problem for anyone then tell me, and I will fix it.) * Chrominance data is only taken from every second line, others are ignored. - * FIXME: Write HQ version. + * FIXME: Write high quality version. */ //void uyvytoyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, @@ -110,8 +110,7 @@ extern void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_ long lumStride, long chromStride, long dstStride); /** - * - * width should be a multiple of 16 + * Width should be a multiple of 16. */ extern void (*yuv422ptouyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, long width, long height, @@ -121,7 +120,7 @@ extern void (*yuv422ptouyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uin * Height should be a multiple of 2 and width should be a multiple of 2. * (If this is a problem for anyone then tell me, and I will fix it.) * Chrominance data is only taken from every second line, others are ignored. - * FIXME: Write HQ version. + * FIXME: Write high quality version. */ extern void (*rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, long width, long height, |