OLD | NEW |
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 const Config config_; | 68 const Config config_; |
69 | 69 |
70 std::unique_ptr<ControllerManager> controller_manager_; | 70 std::unique_ptr<ControllerManager> controller_manager_; |
71 | 71 |
72 std::unique_ptr<DebugDumpWriter> debug_dump_writer_; | 72 std::unique_ptr<DebugDumpWriter> debug_dump_writer_; |
73 | 73 |
74 const std::unique_ptr<EventLogWriter> event_log_writer_; | 74 const std::unique_ptr<EventLogWriter> event_log_writer_; |
75 | 75 |
76 Controller::NetworkMetrics last_metrics_; | 76 Controller::NetworkMetrics last_metrics_; |
77 | 77 |
| 78 rtc::Optional<AudioEncoderRuntimeConfig> prev_config_; |
| 79 |
| 80 ANAStats stats_; |
| 81 |
| 82 const bool enable_bitrate_adaptation_; |
| 83 const bool enable_dtx_adaptation_; |
| 84 const bool enable_fec_adaptation_; |
| 85 const bool enable_channel_adaptation_; |
| 86 const bool enable_frame_length_adaptation_; |
| 87 |
78 RTC_DISALLOW_COPY_AND_ASSIGN(AudioNetworkAdaptorImpl); | 88 RTC_DISALLOW_COPY_AND_ASSIGN(AudioNetworkAdaptorImpl); |
79 }; | 89 }; |
80 | 90 |
81 } // namespace webrtc | 91 } // namespace webrtc |
82 | 92 |
83 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_AUDIO_NETWORK_ADAPT
OR_IMPL_H_ | 93 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_AUDIO_NETWORK_ADAPT
OR_IMPL_H_ |
OLD | NEW |