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

Side by Side Diff: webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.h

Issue 2747863003: Loosening the coupling between WebRTC and //third_party/protobuf (Closed)
Patch Set: Adding PRESUBMIT check 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
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
11 #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_MANAGER_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_MANAGER_H_
12 #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_MANAGER_H_ 12 #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_MANAGER_H_
13 13
14 #include <map> 14 #include <map>
15 #include <memory> 15 #include <memory>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/base/constructormagic.h" 18 #include "webrtc/base/constructormagic.h"
19 #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" 19 #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h"
20 20
21 #ifdef WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP
22 #include "webrtc/base/protobuf_utils.h"
23 #endif
24
21 namespace webrtc { 25 namespace webrtc {
22 26
23 class Clock; 27 class Clock;
24 28
25 class ControllerManager { 29 class ControllerManager {
26 public: 30 public:
27 virtual ~ControllerManager() = default; 31 virtual ~ControllerManager() = default;
28 32
29 // Sort controllers based on their significance. 33 // Sort controllers based on their significance.
30 virtual std::vector<Controller*> GetSortedControllers( 34 virtual std::vector<Controller*> GetSortedControllers(
(...skipping 11 matching lines...) Expand all
42 ~Config(); 46 ~Config();
43 // Least time since last reordering for a new reordering to be made. 47 // Least time since last reordering for a new reordering to be made.
44 int min_reordering_time_ms; 48 int min_reordering_time_ms;
45 // Least squared distance from last scoring point for a new reordering to be 49 // Least squared distance from last scoring point for a new reordering to be
46 // made. 50 // made.
47 float min_reordering_squared_distance; 51 float min_reordering_squared_distance;
48 const Clock* clock; 52 const Clock* clock;
49 }; 53 };
50 54
51 static std::unique_ptr<ControllerManager> Create( 55 static std::unique_ptr<ControllerManager> Create(
56 #ifdef WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP
57 const ProtoString& config_string,
58 #else
52 const std::string& config_string, 59 const std::string& config_string,
60 #endif
53 size_t num_encoder_channels, 61 size_t num_encoder_channels,
54 rtc::ArrayView<const int> encoder_frame_lengths_ms, 62 rtc::ArrayView<const int> encoder_frame_lengths_ms,
55 int min_encoder_bitrate_bps, 63 int min_encoder_bitrate_bps,
56 size_t intial_channels_to_encode, 64 size_t intial_channels_to_encode,
57 int initial_frame_length_ms, 65 int initial_frame_length_ms,
58 int initial_bitrate_bps, 66 int initial_bitrate_bps,
59 bool initial_fec_enabled, 67 bool initial_fec_enabled,
60 bool initial_dtx_enabled, 68 bool initial_dtx_enabled,
61 const Clock* clock); 69 const Clock* clock);
62 70
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 // |scoring_points_| saves the characteristic scoring points of various 112 // |scoring_points_| saves the characteristic scoring points of various
105 // controllers. 113 // controllers.
106 std::map<const Controller*, ScoringPoint> controller_scoring_points_; 114 std::map<const Controller*, ScoringPoint> controller_scoring_points_;
107 115
108 RTC_DISALLOW_COPY_AND_ASSIGN(ControllerManagerImpl); 116 RTC_DISALLOW_COPY_AND_ASSIGN(ControllerManagerImpl);
109 }; 117 };
110 118
111 } // namespace webrtc 119 } // namespace webrtc
112 120
113 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_MANAGER_ H_ 121 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_MANAGER_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698