| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_AUDIO_VIRTUAL_AUDIO_INPUT_STREAM_H_ | 5 #ifndef MEDIA_AUDIO_VIRTUAL_AUDIO_INPUT_STREAM_H_ |
| 6 #define MEDIA_AUDIO_VIRTUAL_AUDIO_INPUT_STREAM_H_ | 6 #define MEDIA_AUDIO_VIRTUAL_AUDIO_INPUT_STREAM_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> |
| 11 #include <set> | 12 #include <set> |
| 12 | 13 |
| 13 #include "base/macros.h" | 14 #include "base/macros.h" |
| 14 #include "base/memory/scoped_ptr.h" | |
| 15 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
| 16 #include "base/threading/thread_checker.h" | 16 #include "base/threading/thread_checker.h" |
| 17 #include "media/audio/audio_io.h" | 17 #include "media/audio/audio_io.h" |
| 18 #include "media/audio/fake_audio_worker.h" | 18 #include "media/audio/fake_audio_worker.h" |
| 19 #include "media/base/audio_converter.h" | 19 #include "media/base/audio_converter.h" |
| 20 #include "media/base/audio_parameters.h" | 20 #include "media/base/audio_parameters.h" |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class SingleThreadTaskRunner; | 23 class SingleThreadTaskRunner; |
| 24 } | 24 } |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // AudioConverter that takes all the audio converters and mixes them into one | 101 // AudioConverter that takes all the audio converters and mixes them into one |
| 102 // final audio stream. | 102 // final audio stream. |
| 103 AudioConverter mixer_; | 103 AudioConverter mixer_; |
| 104 | 104 |
| 105 // Number of currently attached VirtualAudioOutputStreams. | 105 // Number of currently attached VirtualAudioOutputStreams. |
| 106 int num_attached_output_streams_; | 106 int num_attached_output_streams_; |
| 107 | 107 |
| 108 // Handles callback timing for consumption of audio data. | 108 // Handles callback timing for consumption of audio data. |
| 109 FakeAudioWorker fake_worker_; | 109 FakeAudioWorker fake_worker_; |
| 110 | 110 |
| 111 scoped_ptr<AudioBus> audio_bus_; | 111 std::unique_ptr<AudioBus> audio_bus_; |
| 112 | 112 |
| 113 base::ThreadChecker thread_checker_; | 113 base::ThreadChecker thread_checker_; |
| 114 | 114 |
| 115 DISALLOW_COPY_AND_ASSIGN(VirtualAudioInputStream); | 115 DISALLOW_COPY_AND_ASSIGN(VirtualAudioInputStream); |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace media | 118 } // namespace media |
| 119 | 119 |
| 120 #endif // MEDIA_AUDIO_VIRTUAL_AUDIO_INPUT_STREAM_H_ | 120 #endif // MEDIA_AUDIO_VIRTUAL_AUDIO_INPUT_STREAM_H_ |
| OLD | NEW |