Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h

Issue 1513303003: [rtp_rtcp] fixed lint errors in rtp_rtcp module that are not fixed in other CLs (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 288
289 int32_t SetFecParameters(const FecProtectionParams* delta_params, 289 int32_t SetFecParameters(const FecProtectionParams* delta_params,
290 const FecProtectionParams* key_params) override; 290 const FecProtectionParams* key_params) override;
291 291
292 bool LastReceivedNTP(uint32_t* NTPsecs, 292 bool LastReceivedNTP(uint32_t* NTPsecs,
293 uint32_t* NTPfrac, 293 uint32_t* NTPfrac,
294 uint32_t* remote_sr) const; 294 uint32_t* remote_sr) const;
295 295
296 bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const; 296 bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const;
297 297
298 virtual int32_t BoundingSet(bool& tmmbr_owner, TMMBRSet*& bounding_set_rec); 298 int32_t BoundingSet(bool* tmmbr_owner, TMMBRSet* bounding_set_rec);
299 299
300 void BitrateSent(uint32_t* total_rate, 300 void BitrateSent(uint32_t* total_rate,
301 uint32_t* video_rate, 301 uint32_t* video_rate,
302 uint32_t* fec_rate, 302 uint32_t* fec_rate,
303 uint32_t* nackRate) const override; 303 uint32_t* nackRate) const override;
304 304
305 int64_t SendTimeOfSendReport(uint32_t send_report); 305 int64_t SendTimeOfSendReport(uint32_t send_report);
306 306
307 bool SendTimeOfXrRrReport(uint32_t mid_ntp, int64_t* time_ms) const; 307 bool SendTimeOfXrRrReport(uint32_t mid_ntp, int64_t* time_ms) const;
308 308
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 PacketLossStats receive_loss_stats_; 381 PacketLossStats receive_loss_stats_;
382 382
383 // The processed RTT from RtcpRttStats. 383 // The processed RTT from RtcpRttStats.
384 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtt_; 384 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtt_;
385 int64_t rtt_ms_; 385 int64_t rtt_ms_;
386 }; 386 };
387 387
388 } // namespace webrtc 388 } // namespace webrtc
389 389
390 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ 390 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h ('k') | webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698