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

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

Issue 2254703003: Remove TMMBRSet class (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Feedback Created 4 years, 4 months 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 290
291 int32_t SetFecParameters(const FecProtectionParams* delta_params, 291 int32_t SetFecParameters(const FecProtectionParams* delta_params,
292 const FecProtectionParams* key_params) override; 292 const FecProtectionParams* key_params) override;
293 293
294 bool LastReceivedNTP(uint32_t* NTPsecs, 294 bool LastReceivedNTP(uint32_t* NTPsecs,
295 uint32_t* NTPfrac, 295 uint32_t* NTPfrac,
296 uint32_t* remote_sr) const; 296 uint32_t* remote_sr) const;
297 297
298 bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const; 298 bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const;
299 299
300 int32_t BoundingSet(bool* tmmbr_owner, TMMBRSet* bounding_set_rec); 300 std::vector<rtcp::TmmbItem> BoundingSet(bool* tmmbr_owner);
301 301
302 void BitrateSent(uint32_t* total_rate, 302 void BitrateSent(uint32_t* total_rate,
303 uint32_t* video_rate, 303 uint32_t* video_rate,
304 uint32_t* fec_rate, 304 uint32_t* fec_rate,
305 uint32_t* nackRate) const override; 305 uint32_t* nackRate) const override;
306 306
307 // Good state of RTP receiver inform sender. 307 // Good state of RTP receiver inform sender.
308 int32_t SendRTCPReferencePictureSelection(uint64_t picture_id) override; 308 int32_t SendRTCPReferencePictureSelection(uint64_t picture_id) override;
309 309
310 void RegisterSendChannelRtpStatisticsCallback( 310 void RegisterSendChannelRtpStatisticsCallback(
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 PacketLossStats receive_loss_stats_; 360 PacketLossStats receive_loss_stats_;
361 361
362 // The processed RTT from RtcpRttStats. 362 // The processed RTT from RtcpRttStats.
363 rtc::CriticalSection critical_section_rtt_; 363 rtc::CriticalSection critical_section_rtt_;
364 int64_t rtt_ms_; 364 int64_t rtt_ms_;
365 }; 365 };
366 366
367 } // namespace webrtc 367 } // namespace webrtc
368 368
369 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ 369 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_sender.cc ('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