From 6884c36c42e88cd901124c54510602c148e1e26a Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Thu, 25 Jan 2007 09:43:52 +0000 Subject: [PATCH] Brings down the number of snow.c warnings from 33 to 27 by putting parentheses around + or - inside shift. Originally committed as revision 7704 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/snow.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/snow.c b/libavcodec/snow.c index 10be92d62b..a9f70f67ec 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -1965,12 +1965,12 @@ static inline void pred_mv(SnowContext *s, int *mx, int *my, int ref, *my = mid_pred(left->my, top->my, tr->my); }else{ const int *scale = scale_mv_ref[ref]; - *mx = mid_pred(left->mx * scale[left->ref] + 128 >>8, - top ->mx * scale[top ->ref] + 128 >>8, - tr ->mx * scale[tr ->ref] + 128 >>8); - *my = mid_pred(left->my * scale[left->ref] + 128 >>8, - top ->my * scale[top ->ref] + 128 >>8, - tr ->my * scale[tr ->ref] + 128 >>8); + *mx = mid_pred((left->mx * scale[left->ref] + 128) >>8, + (top ->mx * scale[top ->ref] + 128) >>8, + (tr ->mx * scale[tr ->ref] + 128) >>8); + *my = mid_pred((left->my * scale[left->ref] + 128) >>8, + (top ->my * scale[top ->ref] + 128) >>8, + (tr ->my * scale[tr ->ref] + 128) >>8); } }