OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef MEDIA_AUDIO_PULSE_PULSE_INPUT_H_ |
| 6 #define MEDIA_AUDIO_PULSE_PULSE_INPUT_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "media/audio/audio_device_name.h" |
| 11 #include "media/audio/audio_input_stream_impl.h" |
| 12 #include "media/audio/audio_io.h" |
| 13 #include "media/audio/audio_parameters.h" |
| 14 |
| 15 struct pa_context; |
| 16 struct pa_source_info; |
| 17 struct pa_stream; |
| 18 struct pa_threaded_mainloop; |
| 19 |
| 20 namespace media { |
| 21 |
| 22 class AudioManagerPulse; |
| 23 class PulseWrapper; |
| 24 class SeekableBuffer; |
| 25 |
| 26 class PulseAudioInputStream : public AudioInputStreamImpl { |
| 27 public: |
| 28 PulseAudioInputStream(PulseWrapper* wrapper, |
| 29 AudioManagerPulse* audio_manager, |
| 30 const std::string& device_name, |
| 31 const AudioParameters& params, |
| 32 pa_threaded_mainloop* mainloop, |
| 33 pa_context* context); |
| 34 |
| 35 virtual ~PulseAudioInputStream(); |
| 36 |
| 37 // Implementation of AudioInputStream. |
| 38 virtual bool Open() OVERRIDE; |
| 39 virtual void Start(AudioInputCallback* callback) OVERRIDE; |
| 40 virtual void Stop() OVERRIDE; |
| 41 virtual void Close() OVERRIDE; |
| 42 virtual double GetMaxVolume() OVERRIDE; |
| 43 virtual void SetVolume(double volume) OVERRIDE; |
| 44 virtual double GetVolume() OVERRIDE; |
| 45 |
| 46 private: |
| 47 // PulseAudio Callbacks. |
| 48 static void ReadCallback(pa_stream* handle, size_t length, void* user_data); |
| 49 static void StreamNotifyCallback(pa_stream* stream, void* user_data); |
| 50 static void VolumeCallback(pa_context* context, const pa_source_info* info, |
| 51 int error, void* user_data); |
| 52 static void StreamSuccessCallback(pa_stream* s, int error, void* user_data); |
| 53 |
| 54 // Helper for the ReadCallback. |
| 55 void ReadData(); |
| 56 |
| 57 // Wrapper class to invoke all the Pulse functions. |
| 58 PulseWrapper* wrapper_; |
| 59 |
| 60 AudioManagerPulse* audio_manager_; |
| 61 AudioInputCallback* callback_; |
| 62 std::string device_name_; |
| 63 AudioParameters params_; |
| 64 int channels_; |
| 65 double volume_; |
| 66 |
| 67 // Flag indicating the code should stop reading from the data source or |
| 68 // writing to the PulseAudio server. This is set because the device has |
| 69 // entered an unrecoverable error state, or the Stio() has executed. |
| 70 bool stream_started_; |
| 71 |
| 72 // Holds the data from the OS. |
| 73 scoped_ptr<media::SeekableBuffer> buffer_; |
| 74 |
| 75 // Temporary storage for recorded data. It gets a packet of data from |
| 76 // |buffer_| and deliver the data to OnData() callback. |
| 77 scoped_array<uint8> audio_data_buffer_; |
| 78 |
| 79 // PulseAudio API structs. |
| 80 pa_threaded_mainloop* pa_mainloop_; // Weak. |
| 81 pa_context* pa_context_; // Weak. |
| 82 pa_stream* handle_; |
| 83 |
| 84 // Flag indicating the state of the context has been changed. |
| 85 bool context_state_changed_; |
| 86 |
| 87 DISALLOW_COPY_AND_ASSIGN(PulseAudioInputStream); |
| 88 }; |
| 89 |
| 90 } // namespace media |
| 91 |
| 92 #endif // MEDIA_AUDIO_PULSE_PULSE_INPUT_H_ |
OLD | NEW |