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.
5 #ifndef MEDIA_AUDIO_NULL_AUDIO_SINK_H_
6 #define MEDIA_AUDIO_NULL_AUDIO_SINK_H_
10 #include "base/memory/scoped_ptr.h"
11 #include "media/base/audio_renderer_sink.h"
14 class SingleThreadTaskRunner
;
20 class FakeAudioWorker
;
22 class MEDIA_EXPORT NullAudioSink
23 : NON_EXPORTED_BASE(public AudioRendererSink
) {
25 NullAudioSink(const scoped_refptr
<base::SingleThreadTaskRunner
>& task_runner
);
27 // AudioRendererSink implementation.
28 void Initialize(const AudioParameters
& params
,
29 RenderCallback
* callback
) override
;
30 void Start() override
;
32 void Pause() override
;
34 bool SetVolume(double volume
) override
;
36 // Enables audio frame hashing. Must be called prior to Initialize().
37 void StartAudioHashForTesting();
39 // Returns the hash of all audio frames seen since construction.
40 std::string
GetAudioHashForTesting();
43 ~NullAudioSink() override
;
46 // Task that periodically calls Render() to consume audio data.
51 RenderCallback
* callback_
;
53 // Controls whether or not a running hash is computed for audio frames.
54 scoped_ptr
<AudioHash
> audio_hash_
;
56 scoped_refptr
<base::SingleThreadTaskRunner
> task_runner_
;
57 scoped_ptr
<FakeAudioWorker
> fake_worker_
;
58 scoped_ptr
<AudioBus
> audio_bus_
;
60 DISALLOW_COPY_AND_ASSIGN(NullAudioSink
);
65 #endif // MEDIA_AUDIO_NULL_AUDIO_SINK_H_