code style

This commit is contained in:
Volker Fischer 2009-05-12 19:54:44 +00:00
parent f5d33e8abc
commit f005ddcd05

View file

@ -1100,17 +1100,17 @@ EPutDataStat CChannel::PutData ( const CVector<uint8_t>& vecbyData,
} }
} }
} }
Mutex.unlock(); }
Mutex.unlock();
// actual initialization call has to be made // actual initialization call has to be made
// outside the mutex region since it internally // outside the mutex region since it internally
// usees the same mutex, too // usees the same mutex, too
if ( bReinitializeIn ) if ( bReinitializeIn )
{ {
// re-initialize to new value // re-initialize to new value
SetAudioBlockSizeAndComprIn ( SetAudioBlockSizeAndComprIn (
iNewAudioBlockSize, eNewAudComprType ); iNewAudioBlockSize, eNewAudComprType );
}
} }
Mutex.lock(); Mutex.lock();