Searched refs:lpc_coeffs_pre (Results 1 – 1 of 1) sorted by relevance
100 std::array<float, kNumLpcCoefficients - 1> lpc_coeffs_pre{}; in ComputeAndPostProcessLpcCoefficients() local101 ComputeInitialInverseFilterCoefficients(auto_corr, lpc_coeffs_pre); in ComputeAndPostProcessLpcCoefficients()107 lpc_coeffs_pre[i] *= c1; in ComputeAndPostProcessLpcCoefficients()110 lpc_coeffs[0] = lpc_coeffs_pre[0] + c2; in ComputeAndPostProcessLpcCoefficients()111 lpc_coeffs[1] = lpc_coeffs_pre[1] + c2 * lpc_coeffs_pre[0]; in ComputeAndPostProcessLpcCoefficients()112 lpc_coeffs[2] = lpc_coeffs_pre[2] + c2 * lpc_coeffs_pre[1]; in ComputeAndPostProcessLpcCoefficients()113 lpc_coeffs[3] = lpc_coeffs_pre[3] + c2 * lpc_coeffs_pre[2]; in ComputeAndPostProcessLpcCoefficients()114 lpc_coeffs[4] = c2 * lpc_coeffs_pre[3]; in ComputeAndPostProcessLpcCoefficients()