Commit 2b829b86 authored by benoit's avatar benoit

make 2 functions "return x;" to simplify next patch
patch by Ramiro Polla ramiro lisha ufsc br



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8822 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3b3dd145
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment