OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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_ACM2_RENT_A_CODEC_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_ |
13 | 13 |
14 #include <stddef.h> | 14 #include <stddef.h> |
15 #include <map> | 15 #include <map> |
16 #include <memory> | 16 #include <memory> |
17 | 17 |
| 18 #include "webrtc/api/audio_codecs/audio_decoder.h" |
| 19 #include "webrtc/api/audio_codecs/audio_format.h" |
18 #include "webrtc/base/array_view.h" | 20 #include "webrtc/base/array_view.h" |
19 #include "webrtc/base/constructormagic.h" | 21 #include "webrtc/base/constructormagic.h" |
20 #include "webrtc/base/optional.h" | 22 #include "webrtc/base/optional.h" |
21 #include "webrtc/base/scoped_ref_ptr.h" | 23 #include "webrtc/base/scoped_ref_ptr.h" |
22 #include "webrtc/modules/audio_coding/codecs/audio_decoder.h" | |
23 #include "webrtc/modules/audio_coding/codecs/audio_format.h" | |
24 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" | 24 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" |
25 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" | 25 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" |
26 #include "webrtc/typedefs.h" | 26 #include "webrtc/typedefs.h" |
27 | 27 |
28 namespace webrtc { | 28 namespace webrtc { |
29 | 29 |
30 struct CodecInst; | 30 struct CodecInst; |
31 class LockedIsacBandwidthInfo; | 31 class LockedIsacBandwidthInfo; |
32 | 32 |
33 namespace acm2 { | 33 namespace acm2 { |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 std::unique_ptr<AudioEncoder> red_encoder_; | 234 std::unique_ptr<AudioEncoder> red_encoder_; |
235 rtc::scoped_refptr<LockedIsacBandwidthInfo> isac_bandwidth_info_; | 235 rtc::scoped_refptr<LockedIsacBandwidthInfo> isac_bandwidth_info_; |
236 | 236 |
237 RTC_DISALLOW_COPY_AND_ASSIGN(RentACodec); | 237 RTC_DISALLOW_COPY_AND_ASSIGN(RentACodec); |
238 }; | 238 }; |
239 | 239 |
240 } // namespace acm2 | 240 } // namespace acm2 |
241 } // namespace webrtc | 241 } // namespace webrtc |
242 | 242 |
243 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_ | 243 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_ |
OLD | NEW |