diff --git a/libavcodec/aaccoder.c b/libavcodec/aaccoder.c index e5a7a8e7f84bb6ee8775acdfe4409aac7d159058..b4c1e8e656761d0e9a9ea6fac91aa3cf52a7d286 100644 --- a/libavcodec/aaccoder.c +++ b/libavcodec/aaccoder.c @@ -184,7 +184,7 @@ static float quantize_band_cost(struct AACEncContext *s, const float *in, curbits += 21; } else { int c = av_clip(quant(t, Q), 0, 8191); - di = t - c*cbrt(c)*IQ; + di = t - c*cbrtf(c)*IQ; curbits += av_log2(c)*2 - 4 + 1; } } else { @@ -299,7 +299,7 @@ static void quantize_and_encode_band(struct AACEncContext *s, PutBitContext *pb, curbits += 21; } else { int c = av_clip(quant(t, Q), 0, 8191); - di = t - c*cbrt(c)*IQ; + di = t - c*cbrtf(c)*IQ; curbits += av_log2(c)*2 - 4 + 1; } } else {