From 10f3005f51c4aed49abad7d882e1488225f1c674 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 22 Apr 2004 23:15:24 +0000 Subject: RSHIFT(x,0) fix Originally committed as revision 3041 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/common.h b/libavcodec/common.h index a678f2e349..f9010dbc17 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -227,7 +227,7 @@ inline void dprintf(const char* fmt,...) {} # define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0) //rounded divison & shift -#define RSHIFT(a,b) ((a) > 0 ? ((a) + (1<<((b)-1)))>>(b) : ((a) + (1<<((b)-1))-1)>>(b)) +#define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b)) /* assume b>0 */ #define ROUNDED_DIV(a,b) (((a)>0 ? (a) + ((b)>>1) : (a) - ((b)>>1))/(b)) #define ABS(a) ((a) >= 0 ? (a) : (-(a))) -- cgit v1.2.3