video_coding: Updating NACK functions naming
Review URL: http://webrtc-codereview.appspot.com/329018 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1322 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@@ -1400,20 +1400,19 @@ VCMJitterBuffer::CreateNackList(WebRtc_UWord16& nackSize, bool& listExtended)
|
||||
(kStateDecoding != state))
|
||||
{
|
||||
// Reaching thus far means we are going to update the nack list
|
||||
// When in hybrid mode, we also need to check empty frames, so as
|
||||
// not to add empty packets to the nack list
|
||||
// When in hybrid mode, we use the soft NACKing feature.
|
||||
if (_nackMode == kNackHybrid)
|
||||
{
|
||||
_frameBuffers[i]->ZeroOutSeqNumHybrid(_NACKSeqNumInternal,
|
||||
numberOfSeqNum,
|
||||
_rttMs);
|
||||
_frameBuffers[i]->BuildSoftNackList(_NACKSeqNumInternal,
|
||||
numberOfSeqNum,
|
||||
_rttMs);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Used when the frame is being processed by the decoding thread
|
||||
// don't need to use that info in this loop.
|
||||
_frameBuffers[i]->ZeroOutSeqNum(_NACKSeqNumInternal,
|
||||
numberOfSeqNum);
|
||||
_frameBuffers[i]->BuildHardNackList(_NACKSeqNumInternal,
|
||||
numberOfSeqNum);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user