Home
last modified time | relevance | path

Searched refs:y_dB (Results 1 – 2 of 2) sorted by relevance

/dports/audio/eq10q-lv2/eq10q-2.2/gui/widgets/
H A Ddynplot.cpp216 double knee_range, y_dB; in on_expose_event() local
226 y_dB = x_dB; in on_expose_event()
231 y_dB = m_Threshold + (x_dB - m_Threshold)/m_Ratio; in on_expose_event()
238 y_dB += m_Makeup; in on_expose_event()
239 cr->line_to( dB2PixelsX(x_dB) + 0.5, dB2PixelsY(y_dB) + 0.5); in on_expose_event()
251 y_dB = m_Threshold + (x_dB - m_Threshold)*m_Ratio; in on_expose_event()
256 y_dB = x_dB; in on_expose_event()
261y_dB = x_dB + ((1.0 - m_Ratio)*(x_dB - m_Threshold - m_Knee/2)*(x_dB - m_Threshold - m_Knee/2))/(2… in on_expose_event()
264 if( y_dB < x_dB + m_Range ) in on_expose_event()
266 y_dB = x_dB + m_Range; in on_expose_event()
[all …]
/dports/audio/eq10q-lv2/eq10q-2.2/
H A Ddynamics.c324 float x_dB, y_dB; in runDyn() local
421 y_dB = threshold + (x_dB - threshold)*ratio; in runDyn()
426 y_dB = x_dB; in runDyn()
431y_dB = x_dB + ((1.0 - ratio)*(x_dB - threshold - knee/2)*(x_dB - threshold - knee/2))/(2*knee); in runDyn()
433 if( y_dB < x_dB + range ) in runDyn()
435 y_dB = x_dB + range; in runDyn()
442 gain_reduction = pow(10.0f, 0.05f*(y_dB - x_dB)); in runDyn()
477 y_dB = x_dB; in runDyn()
482 y_dB = threshold + (x_dB - threshold)/ratio; in runDyn()
492 gain_reduction = Fast_dB2Lin8(y_dB - x_dB); in runDyn()
[all …]