From af874ebc90af9825055b4a4b1a22fd5800d0b4cb Mon Sep 17 00:00:00 2001 From: "mallinath@google.com" Date: Tue, 2 Aug 2011 22:52:33 +0000 Subject: [PATCH] warning cleanup in render module Review URL: http://webrtc-codereview.appspot.com/95007 git-svn-id: http://webrtc.googlecode.com/svn/trunk@292 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/modules/video_render/main/source/incoming_video_stream.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/video_render/main/source/incoming_video_stream.cc b/src/modules/video_render/main/source/incoming_video_stream.cc index 63d382ca73..ce3fc6f72a 100644 --- a/src/modules/video_render/main/source/incoming_video_stream.cc +++ b/src/modules/video_render/main/source/incoming_video_stream.cc @@ -37,8 +37,8 @@ IncomingVideoStream::IncomingVideoStream(const WebRtc_Word32 moduleId, _moduleId(moduleId), _streamId(streamId), _streamCritsect(*CriticalSectionWrapper::CreateCriticalSection()), - _bufferCritsect(*CriticalSectionWrapper::CreateCriticalSection()), _threadCritsect(*CriticalSectionWrapper::CreateCriticalSection()), + _bufferCritsect(*CriticalSectionWrapper::CreateCriticalSection()), _ptrIncomingRenderThread(), _deliverBufferEvent(*EventWrapper::Create()), _running(false), @@ -52,6 +52,7 @@ IncomingVideoStream::IncomingVideoStream(const WebRtc_Word32 moduleId, _lastRateCalculationTimeMs(0), _numFramesSinceLastCalculation(0), _lastRenderedFrame(), + _tempFrame(), _startImage(), _timeoutImage(), _timeoutTime(),