Lint fix for webrtc/modules/video_coding PART 2!
Trying to submit all changes at once proved impossible since there were too many changes in too many files. The changes to PRESUBMIT.py will be uploaded in the last CL. (original CL: https://codereview.webrtc.org/1528503003/) BUG=webrtc:5309 TBR=mflodman@webrtc.org Review URL: https://codereview.webrtc.org/1543503002 Cr-Commit-Position: refs/heads/master@{#11102}
This commit is contained in:
@ -166,8 +166,8 @@ void VCMDecodingState::UpdateSyncState(const VCMFrameBuffer* frame) {
|
||||
full_sync_ = ContinuousPictureId(frame->PictureId());
|
||||
}
|
||||
} else {
|
||||
full_sync_ = ContinuousSeqNum(static_cast<uint16_t>(
|
||||
frame->GetLowSeqNum()));
|
||||
full_sync_ =
|
||||
ContinuousSeqNum(static_cast<uint16_t>(frame->GetLowSeqNum()));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -229,8 +229,7 @@ bool VCMDecodingState::ContinuousSeqNum(uint16_t seq_num) const {
|
||||
return seq_num == static_cast<uint16_t>(sequence_num_ + 1);
|
||||
}
|
||||
|
||||
bool VCMDecodingState::ContinuousLayer(int temporal_id,
|
||||
int tl0_pic_id) const {
|
||||
bool VCMDecodingState::ContinuousLayer(int temporal_id, int tl0_pic_id) const {
|
||||
// First, check if applicable.
|
||||
if (temporal_id == kNoTemporalIdx || tl0_pic_id == kNoTl0PicIdx)
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user