| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 #ifndef WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ | 10 #ifndef WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ |
| 11 #define WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ | 11 #define WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "webrtc/base/criticalsection.h" | 15 #include "webrtc/base/criticalsection.h" |
| 16 #include "webrtc/base/scoped_ptr.h" | 16 #include "webrtc/base/scoped_ptr.h" |
| 17 #include "webrtc/modules/audio_device/include/fake_audio_device.h" | 17 #include "webrtc/modules/audio_device/include/fake_audio_device.h" |
| 18 #include "webrtc/typedefs.h" | 18 #include "webrtc/typedefs.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 class Clock; | 22 class Clock; |
| 23 class EventTimerWrapper; | 23 class EventTimerWrapper; |
| 24 class FileWrapper; | 24 class FileWrapper; |
| 25 class ModuleFileUtility; | 25 class ModuleFileUtility; |
| 26 class ThreadWrapper; | 26 class PlatformThread; |
| 27 | 27 |
| 28 namespace test { | 28 namespace test { |
| 29 | 29 |
| 30 class FakeAudioDevice : public FakeAudioDeviceModule { | 30 class FakeAudioDevice : public FakeAudioDeviceModule { |
| 31 public: | 31 public: |
| 32 FakeAudioDevice(Clock* clock, const std::string& filename); | 32 FakeAudioDevice(Clock* clock, const std::string& filename); |
| 33 | 33 |
| 34 virtual ~FakeAudioDevice(); | 34 virtual ~FakeAudioDevice(); |
| 35 | 35 |
| 36 int32_t Init() override; | 36 int32_t Init() override; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 52 | 52 |
| 53 AudioTransport* audio_callback_; | 53 AudioTransport* audio_callback_; |
| 54 bool capturing_; | 54 bool capturing_; |
| 55 int8_t captured_audio_[kBufferSizeBytes]; | 55 int8_t captured_audio_[kBufferSizeBytes]; |
| 56 int8_t playout_buffer_[kBufferSizeBytes]; | 56 int8_t playout_buffer_[kBufferSizeBytes]; |
| 57 int64_t last_playout_ms_; | 57 int64_t last_playout_ms_; |
| 58 | 58 |
| 59 Clock* clock_; | 59 Clock* clock_; |
| 60 rtc::scoped_ptr<EventTimerWrapper> tick_; | 60 rtc::scoped_ptr<EventTimerWrapper> tick_; |
| 61 mutable rtc::CriticalSection lock_; | 61 mutable rtc::CriticalSection lock_; |
| 62 rtc::scoped_ptr<ThreadWrapper> thread_; | 62 rtc::scoped_ptr<PlatformThread> thread_; |
| 63 rtc::scoped_ptr<ModuleFileUtility> file_utility_; | 63 rtc::scoped_ptr<ModuleFileUtility> file_utility_; |
| 64 rtc::scoped_ptr<FileWrapper> input_stream_; | 64 rtc::scoped_ptr<FileWrapper> input_stream_; |
| 65 }; | 65 }; |
| 66 } // namespace test | 66 } // namespace test |
| 67 } // namespace webrtc | 67 } // namespace webrtc |
| 68 | 68 |
| 69 #endif // WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ | 69 #endif // WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ |
| OLD | NEW |