video_coding: Removing compiler warnings

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@274 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
mikhal@google.com
2011-07-29 20:23:18 +00:00
parent 7acd3ba9e9
commit 506bc3cf12
5 changed files with 10 additions and 13 deletions

View File

@@ -108,7 +108,6 @@ VCMReceiver::InsertPacket(const VCMPacket& packet,
MaskWord64ToUWord32(VCMTickTime::MillisecondTimestamp()));
}
const bool emptyFrame = (buffer->Length() == 0);
const WebRtc_Word64 nowMs = VCMTickTime::MillisecondTimestamp();
WebRtc_Word64 renderTimeMs = _timing.RenderTimeMs(packet.timestamp, nowMs);

View File

@@ -760,7 +760,6 @@ VCMSessionInfo::PrepareForDecode(WebRtc_UWord8* ptrStartOfLayer,
{
WebRtc_UWord32 currentPacketOffset = 0;
WebRtc_UWord32 length = GetSessionLength();
WebRtc_UWord32 idSum = 0;
WebRtc_UWord32 realDataBytes = 0;
if (length == 0)
{

View File

@@ -955,8 +955,6 @@ VideoCodingModuleImpl::Decode(WebRtc_UWord16 maxWaitTimeMs)
{
CriticalSectionScoped cs(_receiveCritSect);
const WebRtc_UWord32 timestamp = frame->TimeStamp();
// If this frame was too late, we should adjust the delay accordingly
_timing.UpdateCurrentDelay(frame->RenderTimeMs(), VCMTickTime::MillisecondTimestamp());