Lines Matching refs:flcoeffs1
60 float flcoeffs1[BANDS]; member
281 static void imc_calculate_coeffs(IMCContext *q, float *flcoeffs1, in imc_calculate_coeffs() argument
295 workT1[i] = flcoeffs1[i] * flcoeffs1[i]; in imc_calculate_coeffs()
376 float *flcoeffs1, float *flcoeffs2) in imc_decode_level_coefficients() argument
382 flcoeffs1[0] = 20000.0 / exp2 (levlCoeffBuf[0] * 0.18945); // 0.18945 = log2(10) * 0.05703125 in imc_decode_level_coefficients()
383 flcoeffs2[0] = log2f(flcoeffs1[0]); in imc_decode_level_coefficients()
384 tmp = flcoeffs1[0]; in imc_decode_level_coefficients()
390 flcoeffs1[i] = 1.0; in imc_decode_level_coefficients()
402 flcoeffs1[i] = tmp; in imc_decode_level_coefficients()
410 float *old_floor, float *flcoeffs1, in imc_decode_level_coefficients2() argument
419 flcoeffs1[i] = 0; in imc_decode_level_coefficients2()
421 flcoeffs1[i] = imc_exp_tab2[levlCoeffBuf[i]] * old_floor[i]; in imc_decode_level_coefficients2()
424 flcoeffs1[i] = old_floor[i]; in imc_decode_level_coefficients2()
430 float *flcoeffs1, float *flcoeffs2) in imc_decode_level_coefficients_raw() argument
436 … flcoeffs1[pos] = 20000.0 / pow (2, levlCoeffBuf[0] * 0.18945); // 0.18945 = log2(10) * 0.05703125 in imc_decode_level_coefficients_raw()
437 flcoeffs2[pos] = log2f(flcoeffs1[pos]); in imc_decode_level_coefficients_raw()
438 tmp = flcoeffs1[pos]; in imc_decode_level_coefficients_raw()
446 flcoeffs1[i] = tmp * powf(10.0, -level * 0.4375); //todo tab in imc_decode_level_coefficients_raw()
474 highest = FFMAX(highest, chctx->flcoeffs1[i]); in bit_allocation()
501 chctx->flcoeffs4[i] += xTab[(indx * 2 + (chctx->flcoeffs1[i] < highest)) * 2 + flag]; in bit_allocation()
847 chctx->flcoeffs6[i] = chctx->flcoeffs1[i]; in imc_refine_bit_allocation()
911 chctx->flcoeffs1, chctx->flcoeffs2); in imc_decode_block()
914 chctx->flcoeffs1, chctx->flcoeffs2); in imc_decode_block()
917 chctx->flcoeffs1, chctx->flcoeffs2); in imc_decode_block()
920 if(chctx->flcoeffs1[i] > INT_MAX) { in imc_decode_block()
926 memcpy(chctx->old_floor, chctx->flcoeffs1, 32 * sizeof(float)); in imc_decode_block()
950 imc_calculate_coeffs(q, chctx->flcoeffs1, chctx->flcoeffs2, in imc_decode_block()