Mercurial > libavcodec.hg
changeset 1954:e943363932d9 libavcodec
RSHIFT(x,0) fix
author | michael |
---|---|
date | Thu, 22 Apr 2004 23:15:24 +0000 |
parents | 98d46737196b |
children | 5dafb10e0252 |
files | common.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/common.h Thu Apr 22 21:41:08 2004 +0000 +++ b/common.h Thu Apr 22 23:15:24 2004 +0000 @@ -227,7 +227,7 @@ # 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)))