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

Side by Side Diff: webrtc/modules/congestion_controller/probe_controller.h

Issue 2714503002: Perform probing on network route change. (Closed)
Patch Set: Created 3 years, 10 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) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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 19 matching lines...) Expand all
30 30
31 void SetBitrates(int64_t min_bitrate_bps, 31 void SetBitrates(int64_t min_bitrate_bps,
32 int64_t start_bitrate_bps, 32 int64_t start_bitrate_bps,
33 int64_t max_bitrate_bps); 33 int64_t max_bitrate_bps);
34 34
35 void OnNetworkStateChanged(NetworkState state); 35 void OnNetworkStateChanged(NetworkState state);
36 36
37 void SetEstimatedBitrate(int64_t bitrate_bps); 37 void SetEstimatedBitrate(int64_t bitrate_bps);
38 38
39 void EnablePeriodicAlrProbing(bool enable); 39 void EnablePeriodicAlrProbing(bool enable);
40
40 void Process(); 41 void Process();
41 42
42 private: 43 private:
43 enum class State { 44 enum class State {
44 // Initial state where no probing has been triggered yet. 45 // Initial state where no probing has been triggered yet.
45 kInit, 46 kInit,
46 // Waiting for probing results to continue further probing. 47 // Waiting for probing results to continue further probing.
47 kWaitingForProbingResult, 48 kWaitingForProbingResult,
48 // Probing is complete. 49 // Probing is complete.
49 kProbingComplete, 50 kProbingComplete,
(...skipping 21 matching lines...) Expand all
71 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_); 72 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_);
72 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_); 73 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_);
73 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_); 74 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_);
74 75
75 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); 76 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController);
76 }; 77 };
77 78
78 } // namespace webrtc 79 } // namespace webrtc
79 80
80 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ 81 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698