minor code cleanup
This commit is contained in:
parent
49070c77c1
commit
423795afc1
1 changed files with 647 additions and 648 deletions
|
@ -180,8 +180,9 @@ bool CChannel::SetSockBufNumFrames ( const int iNewNumFrames,
|
|||
// block size
|
||||
SockBuf.Init ( iNetwFrameSize, iNewNumFrames, bPreserve );
|
||||
|
||||
|
||||
// TEST in case we are the client, tell the server that the size has changed
|
||||
// in case we are the client and a change in the buffer is done (not
|
||||
// an initialization, we assume that "preserve" is only used in case
|
||||
// the buffer is changed), tell the server that the size has changed
|
||||
if ( !bIsServer && bPreserve )
|
||||
{
|
||||
|
||||
|
@ -190,8 +191,8 @@ if ( !bIsServer && bPreserve )
|
|||
// -> find and fix the problem!
|
||||
|
||||
CreateJitBufMes ( iNewNumFrames );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return false; // -> no error
|
||||
}
|
||||
|
@ -614,13 +615,12 @@ const double dServerJitterMs = 0.666666; // ms
|
|||
// if both decisions are equal than use the result
|
||||
if ( iUpperHystDec == iLowerHystDec )
|
||||
{
|
||||
// set the socket buffer via the main window thread since somehow
|
||||
// it gives a protocol deadlock if we call the SetSocketBufSize()
|
||||
// function directly
|
||||
// updatet the socket buffer size with the new value
|
||||
|
||||
// TEST
|
||||
PostWinMessage ( MS_SET_JIT_BUF_SIZE, iUpperHystDec );
|
||||
|
||||
// TODO remove MS_SET_JIT_BUF_SIZE!
|
||||
//SetSockBufNumFrames ( iUpperHystDec, true );
|
||||
|
||||
}
|
||||
|
@ -633,13 +633,12 @@ const double dServerJitterMs = 0.666666; // ms
|
|||
{
|
||||
// The old result is not near the new decision,
|
||||
// use per definition the upper decision.
|
||||
// Set the socket buffer via the main window thread since somehow
|
||||
// it gives a protocol deadlock if we call the SetSocketBufSize()
|
||||
// function directly.
|
||||
// updatet the socket buffer size with the new value
|
||||
|
||||
// TEST
|
||||
PostWinMessage ( MS_SET_JIT_BUF_SIZE, iUpperHystDec );
|
||||
|
||||
// TODO remove MS_SET_JIT_BUF_SIZE!
|
||||
//SetSockBufNumFrames ( iUpperHystDec, true );
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue