UDPSink buffer: implemented R/W pointer skew auto compensation optimization (2)

This commit is contained in:
f4exb 2017-08-16 12:42:07 +02:00
parent 1fa29a3174
commit 8f3473eede
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ void UDPSinkUDPHandler::advanceReadPointer(int nbBytes)
else
{
float dd = d - m_d; // derivative
float c = (d / 10.0) + (dd / 20.0); // damping and scaling
float c = (d / 15.0) + (dd / 20.0); // damping and scaling
c = c < -0.05 ? -0.05 : c > 0.05 ? 0.05 : c; // limit
UDPSinkMessages::MsgSampleRateCorrection *msg = UDPSinkMessages::MsgSampleRateCorrection::create(c);