reindentation, patch by From: Steve Lhomme, slhomme divxcorp com

Originally committed as revision 6864 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Steve L'Homme 19 years ago committed by Diego Biurrun
parent 484267f3d3
commit e344c1ea36
  1. 3
      libavcodec/g726.c

@ -44,8 +44,7 @@ static inline Float11* i2f(int16_t i, Float11* f)
if (f->sign)
i = -i;
f->exp = av_log2_16bit(i) + !!i;
f->mant = i? (i<<6) >> f->exp :
1<<5;
f->mant = i? (i<<6) >> f->exp : 1<<5;
return f;
}

Loading…
Cancel
Save