Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: media/audio/fake_audio_input_stream.h

Issue 734993002: Makes the WebRTC fake device capable of playing audio from a file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // A fake implementation of AudioInputStream, useful for testing purpose. 5 // A fake implementation of AudioInputStream, useful for testing purpose.
6 6
7 #ifndef MEDIA_AUDIO_FAKE_AUDIO_INPUT_STREAM_H_ 7 #ifndef MEDIA_AUDIO_FAKE_AUDIO_INPUT_STREAM_H_
8 #define MEDIA_AUDIO_FAKE_AUDIO_INPUT_STREAM_H_ 8 #define MEDIA_AUDIO_FAKE_AUDIO_INPUT_STREAM_H_
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/files/file_path.h"
12 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
13 #include "base/synchronization/lock.h" 14 #include "base/synchronization/lock.h"
14 #include "base/threading/thread.h" 15 #include "base/threading/thread.h"
15 #include "base/time/time.h" 16 #include "base/time/time.h"
16 #include "media/audio/audio_io.h" 17 #include "media/audio/audio_io.h"
17 #include "media/audio/audio_parameters.h" 18 #include "media/audio/audio_parameters.h"
19 #include "media/audio/sounds/wav_audio_handler.h"
18 20
19 namespace media { 21 namespace media {
20 22
21 class AudioBus; 23 class AudioBus;
22 class AudioManagerBase; 24 class AudioManagerBase;
23 25
26 // This class can either generate a beep sound or play audio from a file.
24 class MEDIA_EXPORT FakeAudioInputStream 27 class MEDIA_EXPORT FakeAudioInputStream
25 : public AudioInputStream { 28 : public AudioInputStream {
26 public: 29 public:
27 static AudioInputStream* MakeFakeStream(AudioManagerBase* manager, 30 static AudioInputStream* MakeFakeStream(
28 const AudioParameters& params); 31 AudioManagerBase* manager, const AudioParameters& params);
29 32
30 bool Open() override; 33 bool Open() override;
31 void Start(AudioInputCallback* callback) override; 34 void Start(AudioInputCallback* callback) override;
32 void Stop() override; 35 void Stop() override;
33 void Close() override; 36 void Close() override;
34 double GetMaxVolume() override; 37 double GetMaxVolume() override;
35 void SetVolume(double volume) override; 38 void SetVolume(double volume) override;
36 double GetVolume() override; 39 double GetVolume() override;
37 bool IsMuted() override; 40 bool IsMuted() override;
38 void SetAutomaticGainControl(bool enabled) override; 41 void SetAutomaticGainControl(bool enabled) override;
39 bool GetAutomaticGainControl() override; 42 bool GetAutomaticGainControl() override;
40 43
41 // Generate one beep sound. This method is called by 44 // Generate one beep sound. This method is called by
42 // FakeVideoCaptureDevice to test audio/video synchronization. 45 // FakeVideoCaptureDevice to test audio/video synchronization.
43 // This is a static method because FakeVideoCaptureDevice is 46 // This is a static method because FakeVideoCaptureDevice is
44 // disconnected from an audio device. This means only one instance of 47 // disconnected from an audio device. This means only one instance of
45 // this class gets to respond, which is okay because we assume there's 48 // this class gets to respond, which is okay because we assume there's
46 // only one stream for this testing purpose. 49 // only one stream for this testing purpose.
47 // TODO(hclam): Make this non-static. To do this we'll need to fix 50 // TODO(hclam): Make this non-static. To do this we'll need to fix
48 // crbug.com/159053 such that video capture device is aware of audio 51 // crbug.com/159053 such that video capture device is aware of audio
49 // input stream. 52 // input stream.
50 static void BeepOnce(); 53 static void BeepOnce();
51 54
52 private: 55 private:
53 FakeAudioInputStream(AudioManagerBase* manager, 56 FakeAudioInputStream(AudioManagerBase* manager,
54 const AudioParameters& params); 57 const AudioParameters& params);
55
56 ~FakeAudioInputStream() override; 58 ~FakeAudioInputStream() override;
57 59
58 void DoCallback(); 60 void DoCallback();
59 61
62 // Opens this stream reading from a |wav_filename| rather than beeping.
63 void OpenInFileMode(const base::FilePath& wav_filename);
64
65 // Returns true if the device is playing from a file; false if we're beeping.
66 bool PlayingFromFile();
67
68 void PlayFileLooping();
69 void PlayBeep();
70
60 AudioManagerBase* audio_manager_; 71 AudioManagerBase* audio_manager_;
61 AudioInputCallback* callback_; 72 AudioInputCallback* callback_;
62 scoped_ptr<uint8[]> buffer_; 73 scoped_ptr<char[]> buffer_;
DaleCurtis 2014/11/18 21:59:17 Why? If anything I'd think this should be moving t
phoglund_chromium 2014/11/19 09:56:09 I didn't reckon it mattered, and it saves me a cas
DaleCurtis 2014/11/20 19:13:47 It should be uint8_t.
phoglund_chromium 2014/11/20 19:48:31 Done.
63 int buffer_size_; 74 int buffer_size_;
64 AudioParameters params_; 75 AudioParameters params_;
65 const scoped_refptr<base::SingleThreadTaskRunner> task_runner_; 76 const scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
66 base::TimeTicks last_callback_time_; 77 base::TimeTicks last_callback_time_;
67 base::TimeDelta callback_interval_; 78 base::TimeDelta callback_interval_;
68 base::TimeDelta interval_from_last_beep_; 79 base::TimeDelta interval_from_last_beep_;
69 int beep_duration_in_buffers_; 80 int beep_duration_in_buffers_;
70 int beep_generated_in_buffers_; 81 int beep_generated_in_buffers_;
71 int beep_period_in_frames_; 82 int beep_period_in_frames_;
72 int frames_elapsed_;
73 scoped_ptr<media::AudioBus> audio_bus_; 83 scoped_ptr<media::AudioBus> audio_bus_;
84 scoped_ptr<char[]> wav_file_data_;
DaleCurtis 2014/11/18 21:59:17 Ditto.
phoglund_chromium 2014/11/19 09:56:09 See above.
85 scoped_ptr<media::WavAudioHandler> wav_audio_handler_;
86 int wav_file_read_pos_;
74 87
75 // Allows us to run tasks on the FakeAudioInputStream instance which are 88 // Allows us to run tasks on the FakeAudioInputStream instance which are
76 // bound by its lifetime. 89 // bound by its lifetime.
77 base::WeakPtrFactory<FakeAudioInputStream> weak_factory_; 90 base::WeakPtrFactory<FakeAudioInputStream> weak_factory_;
78 91
79 DISALLOW_COPY_AND_ASSIGN(FakeAudioInputStream); 92 DISALLOW_COPY_AND_ASSIGN(FakeAudioInputStream);
80 }; 93 };
81 94
82 } // namespace media 95 } // namespace media
83 96
84 #endif // MEDIA_AUDIO_FAKE_AUDIO_INPUT_STREAM_H_ 97 #endif // MEDIA_AUDIO_FAKE_AUDIO_INPUT_STREAM_H_
OLDNEW
« no previous file with comments | « no previous file | media/audio/fake_audio_input_stream.cc » ('j') | media/audio/fake_audio_input_stream.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698