OLD | NEW |
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 // estimate has decreased or if no RTCP REMB packet has been sent for | 51 // estimate has decreased or if no RTCP REMB packet has been sent for |
52 // a certain time interval. | 52 // a certain time interval. |
53 // Implements RtpReceiveBitrateUpdate. | 53 // Implements RtpReceiveBitrateUpdate. |
54 virtual void OnReceiveBitrateChanged(const std::vector<unsigned int>& ssrcs, | 54 virtual void OnReceiveBitrateChanged(const std::vector<unsigned int>& ssrcs, |
55 unsigned int bitrate); | 55 unsigned int bitrate); |
56 | 56 |
57 private: | 57 private: |
58 typedef std::list<RtpRtcp*> RtpModules; | 58 typedef std::list<RtpRtcp*> RtpModules; |
59 | 59 |
60 Clock* const clock_; | 60 Clock* const clock_; |
61 mutable rtc::CriticalSection list_crit_; | 61 rtc::CriticalSection list_crit_; |
62 | 62 |
63 // The last time a REMB was sent. | 63 // The last time a REMB was sent. |
64 int64_t last_remb_time_; | 64 int64_t last_remb_time_; |
65 unsigned int last_send_bitrate_; | 65 unsigned int last_send_bitrate_; |
66 | 66 |
67 // All RtpRtcp modules to include in the REMB packet. | 67 // All RtpRtcp modules to include in the REMB packet. |
68 RtpModules receive_modules_; | 68 RtpModules receive_modules_; |
69 | 69 |
70 // All modules that can send REMB RTCP. | 70 // All modules that can send REMB RTCP. |
71 RtpModules rtcp_sender_; | 71 RtpModules rtcp_sender_; |
72 | 72 |
73 // The last bitrate update. | 73 // The last bitrate update. |
74 unsigned int bitrate_; | 74 unsigned int bitrate_; |
75 }; | 75 }; |
76 | 76 |
77 } // namespace webrtc | 77 } // namespace webrtc |
78 | 78 |
79 #endif // WEBRTC_VIDEO_VIE_REMB_H_ | 79 #endif // WEBRTC_VIDEO_VIE_REMB_H_ |
OLD | NEW |