diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-09-09 16:51:39 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-09-09 16:51:39 +0000 |
commit | 90c6805ac416bc05b46ea959d3c2d013137ce35c (patch) | |
tree | d32fd9ccc6fe123c63268235bbe4c2e83417ce94 /libavcodec/mace.c | |
parent | 710428c4ec5c3b5fe1e417d2280540e90f2ed1f3 (diff) | |
download | ffmpeg-90c6805ac416bc05b46ea959d3c2d013137ce35c.tar.gz |
Cosmetics: remove useless parentheses
Originally committed as revision 15288 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mace.c')
-rw-r--r-- | libavcodec/mace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mace.c b/libavcodec/mace.c index 255ba87be0..d90f9b7bfb 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 - |