Removed usage of the deprecated critical section constructor in modules/utility.

Review URL: http://webrtc-codereview.appspot.com/321006

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1223 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrike@webrtc.org
2011-12-16 19:53:46 +00:00
parent 57353a33f1
commit 105e07193e
8 changed files with 18 additions and 18 deletions

View File

@@ -464,7 +464,7 @@ VideoFilePlayerImpl::VideoFilePlayerImpl(WebRtc_UWord32 instanceID,
_decodedVideoFrames(0),
_encodedData(*new EncodedVideoData()),
_frameScaler(*new FrameScaler()),
_critSec(*CriticalSectionWrapper::CreateCriticalSection()),
_critSec(CriticalSectionWrapper::CreateCriticalSection()),
_accumulatedRenderTimeMs(0),
_numberOfFramesRead(0),
_videoOnly(false)
@@ -474,7 +474,7 @@ VideoFilePlayerImpl::VideoFilePlayerImpl(WebRtc_UWord32 instanceID,
VideoFilePlayerImpl::~VideoFilePlayerImpl()
{
delete &_critSec;
delete _critSec;
delete &_frameScaler;
delete &_videoDecoder;
delete &_encodedData;