private static float DownMixSurroundToStereo(ReadOnlySpan <float> coefficients, float back, float lfe, float center, float front)
 {
     return(FloatingPointHelper.RoundUp(coefficients[3] * back + coefficients[2] * lfe + coefficients[1] * center + coefficients[0] * front));
 }