From 90c6805ac416bc05b46ea959d3c2d013137ce35c Mon Sep 17 00:00:00 2001
From: Vitor Sessak <vitor1001@gmail.com>
Date: Tue, 9 Sep 2008 16:51:39 +0000
Subject: [PATCH] Cosmetics: remove useless parentheses

Originally committed as revision 15288 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/mace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/mace.c b/libavcodec/mace.c
index 255ba87be03..d90f9b7bfb3 100644
--- a/libavcodec/mace.c
+++ b/libavcodec/mace.c
@@ -205,7 +205,7 @@ static void chomp6(ChannelData *chd, int16_t *output, uint8_t val,
 
     current = mace_broken_clip_int16(current + chd->level);
 
-    chd->level = ((current*chd->factor) >> 15);
+    chd->level = (current*chd->factor) >> 15;
     current >>= 1;
 
     output[0] = QT_8S_2_16S(chd->previous + chd->prev2 -
-- 
GitLab