| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2010 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 CHROME_RENDERER_AUDIO_DEVICE_H_ | |
| 6 #define CHROME_RENDERER_AUDIO_DEVICE_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/scoped_ptr.h" | |
| 13 #include "base/shared_memory.h" | |
| 14 #include "base/threading/simple_thread.h" | |
| 15 #include "chrome/renderer/audio_message_filter.h" | |
| 16 | |
| 17 // Each instance of AudioDevice corresponds to one host stream. | |
| 18 // This class is not thread-safe, so its methods must be called from | |
| 19 // the same thread. | |
| 20 class AudioDevice : public AudioMessageFilter::Delegate, | |
| 21 public base::DelegateSimpleThread::Delegate { | |
| 22 public: | |
| 23 class RenderCallback { | |
| 24 public: | |
| 25 virtual void Render(const std::vector<float*>& audio_data, | |
| 26 size_t number_of_frames) = 0; | |
| 27 protected: | |
| 28 virtual ~RenderCallback() {} | |
| 29 }; | |
| 30 | |
| 31 // |buffer_size| is the number of sample-frames. | |
| 32 AudioDevice(size_t buffer_size, | |
| 33 int channels, | |
| 34 double sample_rate, | |
| 35 RenderCallback* callback); | |
| 36 virtual ~AudioDevice(); | |
| 37 | |
| 38 // Returns |true| on success. | |
| 39 bool Start(); | |
| 40 bool Stop(); | |
| 41 | |
| 42 private: | |
| 43 // AudioMessageFilter::Delegate implementation. | |
| 44 virtual void OnRequestPacket(AudioBuffersState buffers_state); | |
| 45 virtual void OnStateChanged(const ViewMsg_AudioStreamState_Params& state); | |
| 46 virtual void OnCreated(base::SharedMemoryHandle handle, uint32 length); | |
| 47 virtual void OnLowLatencyCreated(base::SharedMemoryHandle handle, | |
| 48 base::SyncSocket::Handle socket_handle, | |
| 49 uint32 length); | |
| 50 virtual void OnVolume(double volume); | |
| 51 virtual void OnDestroy(); | |
| 52 | |
| 53 // DelegateSimpleThread::Delegate implementation. | |
| 54 virtual void Run(); | |
| 55 | |
| 56 // Format | |
| 57 size_t buffer_size_; // in sample-frames | |
| 58 int channels_; | |
| 59 double sample_rate_; | |
| 60 | |
| 61 // Calls the client's callback for rendering audio. | |
| 62 void FireRenderCallback(); | |
| 63 RenderCallback* callback_; | |
| 64 | |
| 65 // The client callback renders audio into here. | |
| 66 std::vector<float*> audio_data_; | |
| 67 | |
| 68 // Callbacks for rendering audio occur on this thread. | |
| 69 scoped_ptr<base::DelegateSimpleThread> audio_thread_; | |
| 70 | |
| 71 // IPC message stuff. | |
| 72 base::SharedMemory* shared_memory() { return shared_memory_.get(); } | |
| 73 base::SyncSocket* socket() { return socket_.get(); } | |
| 74 void* shared_memory_data() { return shared_memory()->memory(); } | |
| 75 | |
| 76 static scoped_refptr<AudioMessageFilter> filter_; | |
| 77 int32 stream_id_; | |
| 78 scoped_ptr<base::SharedMemory> shared_memory_; | |
| 79 scoped_ptr<base::SyncSocket> socket_; | |
| 80 | |
| 81 DISALLOW_COPY_AND_ASSIGN(AudioDevice); | |
| 82 }; | |
| 83 | |
| 84 #endif // CHROME_RENDERER_AUDIO_DEVICE_H_ | |
| OLD | NEW |