diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-01-10 18:15:16 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-01-10 18:28:40 +0000 |
commit | 296a338261ebcfaf7b961a6d1e6a3adb4da69a61 (patch) | |
tree | 8b8677c60ad26ea10c4e5b594ba126fdbe63cbed | |
parent | 4ad40d6d9f489aed3e4b283c640e81585686e4a1 (diff) | |
download | ffmpeg-296a338261ebcfaf7b961a6d1e6a3adb4da69a61.tar.gz |
rgb2rgb: remove unused bgr8torgb8()
RGB8 and BGR8 are paletted formats now.
-rw-r--r-- | libswscale/rgb2rgb.c | 15 | ||||
-rw-r--r-- | libswscale/rgb2rgb.h | 1 |
2 files changed, 0 insertions, 16 deletions
diff --git a/libswscale/rgb2rgb.c b/libswscale/rgb2rgb.c index c6c1ebaaa5..eb7ca7ba1a 100644 --- a/libswscale/rgb2rgb.c +++ b/libswscale/rgb2rgb.c @@ -295,21 +295,6 @@ void rgb12tobgr12(const uint8_t *src, uint8_t *dst, int src_size) } } -void bgr8torgb8(const uint8_t *src, uint8_t *dst, int src_size) -{ - int i; - int num_pixels = src_size; - for (i=0; i<num_pixels; i++) { - unsigned b,g,r; - register uint8_t rgb; - rgb = src[i]; - r = (rgb&0x07); - g = (rgb&0x38)>>3; - b = (rgb&0xC0)>>6; - dst[i] = ((b<<1)&0x07) | ((g&0x07)<<3) | ((r&0x03)<<6); - } -} - #define DEFINE_SHUFFLE_BYTES(a, b, c, d) \ void shuffle_bytes_##a##b##c##d(const uint8_t *src, uint8_t *dst, int src_size) \ { \ diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h index 5d3bbfabe3..4e63124977 100644 --- a/libswscale/rgb2rgb.h +++ b/libswscale/rgb2rgb.h @@ -63,7 +63,6 @@ void rgb15to24(const uint8_t *src, uint8_t *dst, int src_size); void rgb15tobgr16(const uint8_t *src, uint8_t *dst, int src_size); void rgb15tobgr15(const uint8_t *src, uint8_t *dst, int src_size); void rgb12tobgr12(const uint8_t *src, uint8_t *dst, int src_size); -void bgr8torgb8(const uint8_t *src, uint8_t *dst, int src_size); void shuffle_bytes_0321(const uint8_t *src, uint8_t *dst, int src_size); void shuffle_bytes_1230(const uint8_t *src, uint8_t *dst, int src_size); |