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

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

Issue 7601002: Revert r95841 due to failing media_unittests on linux_shared bot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 months 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/audio_util.h ('k') | media/audio/linux/alsa_output.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 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();
24 virtual void Start(AudioSourceCallback* callback); 24 virtual void Start(AudioSourceCallback* callback);
25 virtual void Stop(); 25 virtual void Stop();
26 virtual void SetVolume(double volume); 26 virtual void SetVolume(double volume);
27 virtual void GetVolume(double* volume); 27 virtual void GetVolume(double* volume);
28 virtual void Close(); 28 virtual void Close();
(...skipping 12 matching lines...) Expand all
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/audio_util.h ('k') | media/audio/linux/alsa_output.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698