Commit fd04082a authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '2d5176fa'

* commit '2d5176fa':
  on2avc: Use the integer abs() version
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 00ebf89d 2d5176fa
......@@ -186,7 +186,7 @@ static int on2avc_decode_band_scales(On2AVCContext *c, GetBitContext *gb)
static inline float on2avc_scale(int v, float scale)
{
return v * sqrtf(fabsf(v)) * scale;
return v * sqrtf(abs(v)) * scale;
}
// spectral data is coded completely differently - there are no unsigned codebooks
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment