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

This commit is contained in:
f4exb 2017-08-16 12:28:48 +02:00
parent 60b502ce7e
commit 1fa29a3174
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 + dd) / 10.0; // (d / 10.0) + (dd / 10.0); // damping and scaling
float c = (d / 10.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);