comparison ra144.c @ 6858:f8365275c4f4 libavcodec

Indent
author vitor
date Sat, 24 May 2008 20:52:50 +0000
parents e62bb30dc9ea
children 456d2979f5a1
comparison
equal deleted inserted replaced
6857:e62bb30dc9ea 6858:f8365275c4f4
186 res = (((0x1000000 - (*data) * (*data)) >> 12) * res) >> 12; 186 res = (((0x1000000 - (*data) * (*data)) >> 12) * res) >> 12;
187 187
188 if (res == 0) 188 if (res == 0)
189 return 0; 189 return 0;
190 190
191 if (res > 0x10000) 191 if (res > 0x10000)
192 return 0; /* We're screwed, might as well go out with a bang. :P */ 192 return 0; /* We're screwed, might as well go out with a bang. :P */
193 193
194 while (res <= 0x3fff) { 194 while (res <= 0x3fff) {
195 b++; 195 b++;
196 res <<= 2; 196 res <<= 2;
197 } 197 }