[rtp_rtcp] fixed lint errors in rtp_rtcp module that are not fixed in other CLs
BUG=webrtc:5277 R=mflodman Review URL: https://codereview.webrtc.org/1513303003 Cr-Commit-Position: refs/heads/master@{#11025}
This commit is contained in:
@ -746,7 +746,7 @@ bool RTCPReceiver::UpdateRTCPReceiveInformationTimers() {
|
||||
return updateBoundingSet;
|
||||
}
|
||||
|
||||
int32_t RTCPReceiver::BoundingSet(bool &tmmbrOwner, TMMBRSet* boundingSetRec) {
|
||||
int32_t RTCPReceiver::BoundingSet(bool* tmmbrOwner, TMMBRSet* boundingSetRec) {
|
||||
CriticalSectionScoped lock(_criticalSectionRTCPReceiver);
|
||||
|
||||
std::map<uint32_t, RTCPReceiveInformation*>::iterator receiveInfoIt =
|
||||
@ -766,7 +766,7 @@ int32_t RTCPReceiver::BoundingSet(bool &tmmbrOwner, TMMBRSet* boundingSetRec) {
|
||||
i++) {
|
||||
if(receiveInfo->TmmbnBoundingSet.Ssrc(i) == main_ssrc_) {
|
||||
// owner of bounding set
|
||||
tmmbrOwner = true;
|
||||
*tmmbrOwner = true;
|
||||
}
|
||||
boundingSetRec->SetEntry(i,
|
||||
receiveInfo->TmmbnBoundingSet.Tmmbr(i),
|
||||
|
||||
Reference in New Issue
Block a user