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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.h

Issue 2372713005: Revert of Unify rtcp packet setters (Closed)
Patch Set: Created 4 years, 2 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) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 17 matching lines...) Expand all
28 ~VoipMetric() {} 28 ~VoipMetric() {}
29 29
30 VoipMetric& operator=(const VoipMetric&) = default; 30 VoipMetric& operator=(const VoipMetric&) = default;
31 31
32 void Parse(const uint8_t* buffer); 32 void Parse(const uint8_t* buffer);
33 33
34 // Fills buffer with the VoipMetric. 34 // Fills buffer with the VoipMetric.
35 // Consumes VoipMetric::kLength bytes. 35 // Consumes VoipMetric::kLength bytes.
36 void Create(uint8_t* buffer) const; 36 void Create(uint8_t* buffer) const;
37 37
38 void SetMediaSsrc(uint32_t ssrc) { ssrc_ = ssrc; } 38 void To(uint32_t ssrc) { ssrc_ = ssrc; }
39 void SetVoipMetric(const RTCPVoIPMetric& voip_metric) { 39 void WithVoipMetric(const RTCPVoIPMetric& voip_metric) {
40 voip_metric_ = voip_metric; 40 voip_metric_ = voip_metric;
41 } 41 }
42 42
43 uint32_t ssrc() const { return ssrc_; } 43 uint32_t ssrc() const { return ssrc_; }
44 const RTCPVoIPMetric& voip_metric() const { return voip_metric_; } 44 const RTCPVoIPMetric& voip_metric() const { return voip_metric_; }
45 45
46 private: 46 private:
47 uint32_t ssrc_; 47 uint32_t ssrc_;
48 RTCPVoIPMetric voip_metric_; 48 RTCPVoIPMetric voip_metric_;
49 }; 49 };
50 50
51 } // namespace rtcp 51 } // namespace rtcp
52 } // namespace webrtc 52 } // namespace webrtc
53 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_VOIP_METRIC_H_ 53 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_VOIP_METRIC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698