diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-01-13 04:32:14 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-01-13 04:32:14 +0000 |
commit | 10ef990d96780d543fee7b2e9fdf7d4fa96e5c29 (patch) | |
tree | c60de3ab1231d0a8a3dbbdab0b90780fe25078cf | |
parent | 6187b8bde37b92f7f43be2ae9a3d15c0ade5cd12 (diff) | |
download | ffmpeg-10ef990d96780d543fee7b2e9fdf7d4fa96e5c29.tar.gz |
cosmetics: typo pallete --> palette
Originally committed as revision 21892 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/rgb2rgb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/rgb2rgb.c b/libswscale/rgb2rgb.c index b40be70ed6..a938abfc92 100644 --- a/libswscale/rgb2rgb.c +++ b/libswscale/rgb2rgb.c @@ -341,7 +341,7 @@ void sws_rgb2rgb_init(int flags){ } /** - * Pallete is assumed to contain bgr32 + * Palette is assumed to contain BGR32. */ void palette8torgb32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) { @@ -391,7 +391,7 @@ void palette8tobgr32(const uint8_t *src, uint8_t *dst, long num_pixels, const ui } /** - * Pallete is assumed to contain bgr32 + * Palette is assumed to contain BGR32. */ void palette8torgb24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) { @@ -446,7 +446,7 @@ void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const ui } /** - * Pallete is assumed to contain bgr15, see rgb32to15 to convert the palette + * Palette is assumed to contain BGR15, see rgb32to15 to convert the palette. */ void palette8torgb15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) { |