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 |
11 #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_FEC_CONTROLLER_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_FEC_CONTROLLER_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_FEC_CONTROLLER_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_FEC_CONTROLLER_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 | 15 |
16 #include "webrtc/base/constructormagic.h" | 16 #include "webrtc/base/constructormagic.h" |
| 17 #include "webrtc/base/smoothing_filter.h" |
17 #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" | 18 #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" |
18 #include "webrtc/modules/audio_coding/audio_network_adaptor/smoothing_filter.h" | |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 | 21 |
22 class FecController final : public Controller { | 22 class FecController final : public Controller { |
23 public: | 23 public: |
24 struct Config { | 24 struct Config { |
25 struct Threshold { | 25 struct Threshold { |
26 // Threshold defines a curve in the bandwidth/packet-loss domain. The | 26 // Threshold defines a curve in the bandwidth/packet-loss domain. The |
27 // curve is characterized by the two conjunction points: A and B. | 27 // curve is characterized by the two conjunction points: A and B. |
28 // | 28 // |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 96 |
97 const ThresholdInfo fec_enabling_threshold_info_; | 97 const ThresholdInfo fec_enabling_threshold_info_; |
98 const ThresholdInfo fec_disabling_threshold_info_; | 98 const ThresholdInfo fec_disabling_threshold_info_; |
99 | 99 |
100 RTC_DISALLOW_COPY_AND_ASSIGN(FecController); | 100 RTC_DISALLOW_COPY_AND_ASSIGN(FecController); |
101 }; | 101 }; |
102 | 102 |
103 } // namespace webrtc | 103 } // namespace webrtc |
104 | 104 |
105 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_FEC_CONTROLLER_H_ | 105 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_FEC_CONTROLLER_H_ |
OLD | NEW |