From f9f4d5b718fcbcc2d8d13db8c65dc03dbbd58190 Mon Sep 17 00:00:00 2001 From: bcoudurier Date: Sun, 1 Jun 2008 03:17:42 +0000 Subject: remove useless casts git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26941 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libswscale/rgb2rgb_template.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libswscale') diff --git a/libswscale/rgb2rgb_template.c b/libswscale/rgb2rgb_template.c index 4aa607d9af..adeae337e6 100644 --- a/libswscale/rgb2rgb_template.c +++ b/libswscale/rgb2rgb_template.c @@ -325,14 +325,14 @@ static inline void RENAME(rgb16to15)(const uint8_t *src, uint8_t *dst, long src_ mm_end = end - 3; while (s < mm_end) { - register uint32_t x= *((uint32_t *)s); + register uint32_t x= *s; *((uint32_t *)d) = ((x>>1)&0x7FE07FE0) | (x&0x001F001F); s+=4; d+=4; } if (s < end) { - register uint16_t x= *((uint16_t *)s); + register uint16_t x= *s; *((uint16_t *)d) = ((x>>1)&0x7FE0) | (x&0x001F); s+=2; d+=2; @@ -936,7 +936,7 @@ static inline void RENAME(rgb15to24)(const uint8_t *src, uint8_t *dst, long src_ #ifdef HAVE_MMX const uint16_t *mm_end; #endif - uint8_t *d = (uint8_t *)dst; + uint8_t *d = dst; const uint16_t *s = (uint16_t *)src; end = s + src_size/2; #ifdef HAVE_MMX @@ -1219,7 +1219,7 @@ static inline void RENAME(rgb15to32)(const uint8_t *src, uint8_t *dst, long src_ #ifdef HAVE_MMX const uint16_t *mm_end; #endif - uint8_t *d = (uint8_t *)dst; + uint8_t *d = dst; const uint16_t *s = (const uint16_t *)src; end = s + src_size/2; #ifdef HAVE_MMX @@ -1297,7 +1297,7 @@ static inline void RENAME(rgb16to32)(const uint8_t *src, uint8_t *dst, long src_ #ifdef HAVE_MMX const uint16_t *mm_end; #endif - uint8_t *d = (uint8_t *)dst; + uint8_t *d = dst; const uint16_t *s = (uint16_t *)src; end = s + src_size/2; #ifdef HAVE_MMX @@ -1366,7 +1366,7 @@ static inline void RENAME(rgb16to32)(const uint8_t *src, uint8_t *dst, long src_ static inline void RENAME(rgb32tobgr32)(const uint8_t *src, uint8_t *dst, long src_size) { long idx = 15 - src_size; - uint8_t *s = (uint8_t *) src-idx, *d = dst-idx; + uint8_t *s = src-idx, *d = dst-idx; #ifdef HAVE_MMX asm volatile( "test %0, %0 \n\t" -- cgit v1.2.3