small fixes

This commit is contained in:
Volker Fischer 2011-05-25 20:00:54 +00:00
parent 423795afc1
commit 048d8d2e15
3 changed files with 7 additions and 7 deletions

View file

@ -570,10 +570,6 @@ int CChannel::GetUploadRateKbps()
SYSTEM_SAMPLE_RATE_HZ / iAudioSizeOut / 1000;
}
// TEST
void CChannel::UpdateSocketBufferSize ( const double dAudioBufferDurationMs,
const double dLocalStdDev )
{

View file

@ -404,8 +404,12 @@ int main ( int argc, char** argv )
pMainWindow = &ServerDlg;
pApp = &app; // needed for post-event routine
// show dialog
ServerDlg.show();
// show dialog (if not the minimized flag is set)
if ( !bStartMinimized )
{
ServerDlg.show();
}
app.exec();
}
else

View file

@ -621,7 +621,7 @@ if ( rand() < ( RAND_MAX / 2 ) ) return false;
/******************************************************************************\
* Access-functions for creating and parsing messages *
* Access functions for creating and parsing messages *
\******************************************************************************/
void CProtocol::CreateJitBufMes ( const int iJitBufSize )
{