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

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

Issue 8520033: Add OVERRIDE to media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « media/audio/fake_audio_input_stream.h ('k') | media/audio/mac/audio_low_latency_output_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 AudioOutputStream. It is used for testing purpose. 5 // A fake implementation of AudioOutputStream. It is used for testing purpose.
6 // TODO(hclam): Implement a thread in this fake output stream to simulate an 6 // TODO(hclam): Implement a thread in this fake output stream to simulate an
7 // audio output stream reading from AudioSourceCallback. 7 // audio output stream reading from AudioSourceCallback.
8 8
9 #ifndef MEDIA_AUDIO_FAKE_AUDIO_OUTPUT_STREAM_H_ 9 #ifndef MEDIA_AUDIO_FAKE_AUDIO_OUTPUT_STREAM_H_
10 #define MEDIA_AUDIO_FAKE_AUDIO_OUTOUT_STREAM_H_ 10 #define MEDIA_AUDIO_FAKE_AUDIO_OUTOUT_STREAM_H_
11 11
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "media/audio/audio_io.h" 15 #include "media/audio/audio_io.h"
16 #include "media/audio/audio_parameters.h" 16 #include "media/audio/audio_parameters.h"
17 17
18 class MEDIA_EXPORT FakeAudioOutputStream : public AudioOutputStream { 18 class MEDIA_EXPORT FakeAudioOutputStream : public AudioOutputStream {
19 public: 19 public:
20 static AudioOutputStream* MakeFakeStream(const AudioParameters& params); 20 static AudioOutputStream* MakeFakeStream(const AudioParameters& params);
21 static FakeAudioOutputStream* GetLastFakeStream(); 21 static FakeAudioOutputStream* GetLastFakeStream();
22 22
23 virtual bool Open(); 23 virtual bool Open() OVERRIDE;
24 virtual void Start(AudioSourceCallback* callback); 24 virtual void Start(AudioSourceCallback* callback) OVERRIDE;
25 virtual void Stop(); 25 virtual void Stop() OVERRIDE;
26 virtual void SetVolume(double volume); 26 virtual void SetVolume(double volume) OVERRIDE;
27 virtual void GetVolume(double* volume); 27 virtual void GetVolume(double* volume) OVERRIDE;
28 virtual void Close(); 28 virtual void Close() OVERRIDE;
29 29
30 uint8* buffer() { return buffer_.get(); } 30 uint8* buffer() { return buffer_.get(); }
31 double volume() { return volume_; } 31 double volume() { return volume_; }
32 32
33 private: 33 private:
34 explicit FakeAudioOutputStream(const AudioParameters& params); 34 explicit FakeAudioOutputStream(const AudioParameters& params);
35 virtual ~FakeAudioOutputStream(); 35 virtual ~FakeAudioOutputStream();
36 36
37 static void DestroyLastFakeStream(void* param); 37 static void DestroyLastFakeStream(void* param);
38 static bool has_created_fake_stream_; 38 static bool has_created_fake_stream_;
39 static FakeAudioOutputStream* last_fake_stream_; 39 static FakeAudioOutputStream* last_fake_stream_;
40 40
41 double volume_; 41 double volume_;
42 AudioSourceCallback* callback_; 42 AudioSourceCallback* callback_;
43 scoped_array<uint8> buffer_; 43 scoped_array<uint8> buffer_;
44 uint32 packet_size_; 44 uint32 packet_size_;
45 bool closed_; 45 bool closed_;
46 46
47 DISALLOW_COPY_AND_ASSIGN(FakeAudioOutputStream); 47 DISALLOW_COPY_AND_ASSIGN(FakeAudioOutputStream);
48 }; 48 };
49 49
50 #endif // MEDIA_AUDIO_FAKE_AUDIO_OUTPUT_STREAM_H_ 50 #endif // MEDIA_AUDIO_FAKE_AUDIO_OUTPUT_STREAM_H_
OLDNEW
« no previous file with comments | « media/audio/fake_audio_input_stream.h ('k') | media/audio/mac/audio_low_latency_output_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698