| 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/array_view.h" |
| 18 #include "webrtc/api/audio_codecs/audio_decoder.h" | 19 #include "webrtc/api/audio_codecs/audio_decoder.h" |
| 19 #include "webrtc/api/audio_codecs/audio_encoder.h" | 20 #include "webrtc/api/audio_codecs/audio_encoder.h" |
| 20 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" | 21 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" |
| 21 #include "webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h" | 22 #include "webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h" |
| 22 #include "webrtc/rtc_base/array_view.h" | |
| 23 #include "webrtc/rtc_base/constructormagic.h" | 23 #include "webrtc/rtc_base/constructormagic.h" |
| 24 #include "webrtc/rtc_base/optional.h" | 24 #include "webrtc/rtc_base/optional.h" |
| 25 #include "webrtc/rtc_base/scoped_ref_ptr.h" | 25 #include "webrtc/rtc_base/scoped_ref_ptr.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 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 std::unique_ptr<AudioEncoder> red_encoder_; | 198 std::unique_ptr<AudioEncoder> red_encoder_; |
| 199 rtc::scoped_refptr<LockedIsacBandwidthInfo> isac_bandwidth_info_; | 199 rtc::scoped_refptr<LockedIsacBandwidthInfo> isac_bandwidth_info_; |
| 200 | 200 |
| 201 RTC_DISALLOW_COPY_AND_ASSIGN(RentACodec); | 201 RTC_DISALLOW_COPY_AND_ASSIGN(RentACodec); |
| 202 }; | 202 }; |
| 203 | 203 |
| 204 } // namespace acm2 | 204 } // namespace acm2 |
| 205 } // namespace webrtc | 205 } // namespace webrtc |
| 206 | 206 |
| 207 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_ | 207 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_ |
| OLD | NEW |