From a51125b52f5e23673782a421cb219b55933f4cec Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Sun, 12 Sep 2010 13:03:41 +0000 Subject: rgb2rgb: replace shuffle_bytes_2103() by optimized rgb32tobgr32() Originally committed as revision 32190 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale --- libswscale/rgb2rgb.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libswscale/rgb2rgb.h') diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h index 2e182dd163..31e21af127 100644 --- a/libswscale/rgb2rgb.h +++ b/libswscale/rgb2rgb.h @@ -47,7 +47,7 @@ extern void (*rgb16to32) (const uint8_t *src, uint8_t *dst, long src_size); extern void (*rgb24tobgr24)(const uint8_t *src, uint8_t *dst, long src_size); extern void (*rgb24to16) (const uint8_t *src, uint8_t *dst, long src_size); extern void (*rgb24to15) (const uint8_t *src, uint8_t *dst, long src_size); -extern void (*rgb32tobgr32)(const uint8_t *src, uint8_t *dst, long src_size); +extern void (*shuffle_bytes_2103)(const uint8_t *src, uint8_t *dst, long src_size); extern void (*rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long src_size); extern void (*rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long src_size); @@ -65,7 +65,6 @@ void bgr8torgb8 (const uint8_t *src, uint8_t *dst, long src_size); void shuffle_bytes_0321(const uint8_t *src, uint8_t *dst, long src_size); void shuffle_bytes_1230(const uint8_t *src, uint8_t *dst, long src_size); -void shuffle_bytes_2103(const uint8_t *src, uint8_t *dst, long src_size); void shuffle_bytes_3012(const uint8_t *src, uint8_t *dst, long src_size); void shuffle_bytes_3210(const uint8_t *src, uint8_t *dst, long src_size); -- cgit v1.2.3