bug fix
This commit is contained in:
parent
0f46659fcb
commit
70f0c66b85
1 changed files with 2 additions and 2 deletions
|
@ -160,8 +160,8 @@ void CClient::OnDetectedCLMessage ( CVector<uint8_t> vecbyData,
|
|||
void CClient::OnJittBufSizeChanged ( int iNewJitBufSize )
|
||||
{
|
||||
// we received a jitter buffer size changed message from the server,
|
||||
// only apply this value if auto jitter buffer size is disabled
|
||||
if ( !GetDoAutoSockBufSize() )
|
||||
// only apply this value if auto jitter buffer size is enabled
|
||||
if ( GetDoAutoSockBufSize() )
|
||||
{
|
||||
// Note: Do not use the "SetServerSockBufNumFrames" function for setting
|
||||
// the new server jitter buffer size since then a message would be sent
|
||||
|
|
Loading…
Reference in a new issue