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

Side by Side Diff: webrtc/voice_engine/channel.cc

Issue 2710093004: Rename webrtc::PacketInfo to webrtc::PacketFeedback (Closed)
Patch Set: Rebased Created 3 years, 9 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
« no previous file with comments | « webrtc/tools/event_log_visualizer/analyzer.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 if (feedback_observer_) 255 if (feedback_observer_)
256 feedback_observer_->AddPacket(sequence_number, length, pacing_info); 256 feedback_observer_->AddPacket(sequence_number, length, pacing_info);
257 } 257 }
258 258
259 void OnTransportFeedback(const rtcp::TransportFeedback& feedback) override { 259 void OnTransportFeedback(const rtcp::TransportFeedback& feedback) override {
260 RTC_DCHECK(network_thread_.CalledOnValidThread()); 260 RTC_DCHECK(network_thread_.CalledOnValidThread());
261 rtc::CritScope lock(&crit_); 261 rtc::CritScope lock(&crit_);
262 if (feedback_observer_) 262 if (feedback_observer_)
263 feedback_observer_->OnTransportFeedback(feedback); 263 feedback_observer_->OnTransportFeedback(feedback);
264 } 264 }
265 std::vector<PacketInfo> GetTransportFeedbackVector() const override { 265 std::vector<PacketFeedback> GetTransportFeedbackVector() const override {
266 RTC_NOTREACHED(); 266 RTC_NOTREACHED();
267 return std::vector<PacketInfo>(); 267 return std::vector<PacketFeedback>();
268 } 268 }
269 269
270 private: 270 private:
271 rtc::CriticalSection crit_; 271 rtc::CriticalSection crit_;
272 rtc::ThreadChecker thread_checker_; 272 rtc::ThreadChecker thread_checker_;
273 rtc::ThreadChecker pacer_thread_; 273 rtc::ThreadChecker pacer_thread_;
274 rtc::ThreadChecker network_thread_; 274 rtc::ThreadChecker network_thread_;
275 TransportFeedbackObserver* feedback_observer_ GUARDED_BY(&crit_); 275 TransportFeedbackObserver* feedback_observer_ GUARDED_BY(&crit_);
276 }; 276 };
277 277
(...skipping 2786 matching lines...) Expand 10 before | Expand all | Expand 10 after
3064 int64_t min_rtt = 0; 3064 int64_t min_rtt = 0;
3065 if (_rtpRtcpModule->RTT(remoteSSRC, &rtt, &avg_rtt, &min_rtt, &max_rtt) != 3065 if (_rtpRtcpModule->RTT(remoteSSRC, &rtt, &avg_rtt, &min_rtt, &max_rtt) !=
3066 0) { 3066 0) {
3067 return 0; 3067 return 0;
3068 } 3068 }
3069 return rtt; 3069 return rtt;
3070 } 3070 }
3071 3071
3072 } // namespace voe 3072 } // namespace voe
3073 } // namespace webrtc 3073 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/tools/event_log_visualizer/analyzer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698