# HG changeset patch # User benoit # Date 1177575339 0 # Node ID ecb4776617e16f0615221c5aad07c43b95bcb29a # Parent cfaf9feae0f95fb7d8398add0b80949fda235b04 make 2 functions "return x;" to simplify next patch patch by Ramiro Polla ramiro lisha ufsc br diff -r cfaf9feae0f9 -r ecb4776617e1 bswap.h --- a/bswap.h Wed Apr 25 08:47:15 2007 +0000 +++ b/bswap.h Thu Apr 26 08:15:39 2007 +0000 @@ -111,7 +111,8 @@ #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 @@ #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