make 2 functions "return x;" to simplify next patch

patch by Ramiro Polla ramiro lisha ufsc br

Originally committed as revision 8822 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla 2007-04-26 08:15:39 +00:00 committed by Benoit Fouet
parent 784b7f77c8
commit 853d15c2f8
1 changed files with 4 additions and 2 deletions

View File

@ -111,7 +111,8 @@ static inline uint64_t bswap_64(uint64_t x)
#else
static av_always_inline uint16_t bswap_16(uint16_t x){
return (x>>8) | (x<<8);
x= (x>>8) | (x<<8);
return x;
}
#ifdef ARCH_ARM
@ -140,7 +141,8 @@ static av_always_inline uint32_t bswap_32(uint32_t x){
#else
static av_always_inline uint32_t bswap_32(uint32_t x){
x= ((x<<8)&0xFF00FF00) | ((x>>8)&0x00FF00FF);
return (x>>16) | (x<<16);
x= (x>>16) | (x<<16);
return x;
}
#endif