comparison mace.c @ 7841:991f4bb253fc libavcodec

Cosmetics: remove useless parentheses
author vitor
date Tue, 09 Sep 2008 16:51:39 +0000
parents 38dd4fd9f107
children 3e7e3cb59bd4
comparison
equal deleted inserted replaced
7840:38dd4fd9f107 7841:991f4bb253fc
203 chd->factor -= 314; 203 chd->factor -= 314;
204 } 204 }
205 205
206 current = mace_broken_clip_int16(current + chd->level); 206 current = mace_broken_clip_int16(current + chd->level);
207 207
208 chd->level = ((current*chd->factor) >> 15); 208 chd->level = (current*chd->factor) >> 15;
209 current >>= 1; 209 current >>= 1;
210 210
211 output[0] = QT_8S_2_16S(chd->previous + chd->prev2 - 211 output[0] = QT_8S_2_16S(chd->previous + chd->prev2 -
212 ((chd->prev2-current) >> 2)); 212 ((chd->prev2-current) >> 2));
213 output[numChannels] = QT_8S_2_16S(chd->previous + current + 213 output[numChannels] = QT_8S_2_16S(chd->previous + current +