| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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_MAIN_ACM2_AUDIO_CODING_MODULE_IMPL_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_ACM2_AUDIO_CODING_MODULE_IMPL_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_AUDIO_CODING_MODULE_IMPL_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_ACM2_AUDIO_CODING_MODULE_IMPL_H_ |
| 13 | 13 |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "webrtc/base/buffer.h" | 16 #include "webrtc/base/buffer.h" |
| 17 #include "webrtc/base/scoped_ptr.h" | 17 #include "webrtc/base/scoped_ptr.h" |
| 18 #include "webrtc/base/thread_annotations.h" | 18 #include "webrtc/base/thread_annotations.h" |
| 19 #include "webrtc/common_types.h" | 19 #include "webrtc/common_types.h" |
| 20 #include "webrtc/engine_configurations.h" | 20 #include "webrtc/engine_configurations.h" |
| 21 #include "webrtc/modules/audio_coding/main/acm2/acm_receiver.h" | 21 #include "webrtc/modules/audio_coding/acm2/acm_receiver.h" |
| 22 #include "webrtc/modules/audio_coding/main/acm2/acm_resampler.h" | 22 #include "webrtc/modules/audio_coding/acm2/acm_resampler.h" |
| 23 #include "webrtc/modules/audio_coding/main/acm2/codec_manager.h" | 23 #include "webrtc/modules/audio_coding/acm2/codec_manager.h" |
| 24 | 24 |
| 25 namespace webrtc { | 25 namespace webrtc { |
| 26 | 26 |
| 27 class CriticalSectionWrapper; | 27 class CriticalSectionWrapper; |
| 28 class AudioCodingImpl; | 28 class AudioCodingImpl; |
| 29 | 29 |
| 30 namespace acm2 { | 30 namespace acm2 { |
| 31 | 31 |
| 32 class AudioCodingModuleImpl final : public AudioCodingModule { | 32 class AudioCodingModuleImpl final : public AudioCodingModule { |
| 33 public: | 33 public: |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 | 270 |
| 271 const rtc::scoped_ptr<CriticalSectionWrapper> callback_crit_sect_; | 271 const rtc::scoped_ptr<CriticalSectionWrapper> callback_crit_sect_; |
| 272 AudioPacketizationCallback* packetization_callback_ | 272 AudioPacketizationCallback* packetization_callback_ |
| 273 GUARDED_BY(callback_crit_sect_); | 273 GUARDED_BY(callback_crit_sect_); |
| 274 ACMVADCallback* vad_callback_ GUARDED_BY(callback_crit_sect_); | 274 ACMVADCallback* vad_callback_ GUARDED_BY(callback_crit_sect_); |
| 275 }; | 275 }; |
| 276 | 276 |
| 277 } // namespace acm2 | 277 } // namespace acm2 |
| 278 } // namespace webrtc | 278 } // namespace webrtc |
| 279 | 279 |
| 280 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_AUDIO_CODING_MODULE_IMPL_H_ | 280 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_AUDIO_CODING_MODULE_IMPL_H_ |
| OLD | NEW |