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

Unified Diff: media/audio/fake_audio_consumer.h

Issue 922663002: Moved the fake input stream's processing onto the audio worker thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/audio/audio_io.h ('k') | media/audio/fake_audio_consumer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/fake_audio_consumer.h
diff --git a/media/audio/fake_audio_consumer.h b/media/audio/fake_audio_consumer.h
deleted file mode 100644
index 18c552ad97be9593dcdd370dd4bf20f50943df97..0000000000000000000000000000000000000000
--- a/media/audio/fake_audio_consumer.h
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MEDIA_AUDIO_FAKE_AUDIO_CONSUMER_H_
-#define MEDIA_AUDIO_FAKE_AUDIO_CONSUMER_H_
-
-#include "base/callback_forward.h"
-#include "base/memory/ref_counted.h"
-#include "media/base/media_export.h"
-
-namespace base {
-class SingleThreadTaskRunner;
-}
-
-namespace media {
-class AudioBus;
-class AudioParameters;
-
-// A fake audio consumer. Using a provided message loop, FakeAudioConsumer will
-// simulate a real time consumer of audio data.
-class MEDIA_EXPORT FakeAudioConsumer {
- public:
- // |worker_task_runner| is the task runner on which the ReadCB provided to
- // Start() will be executed on. This may or may not be the be for the same
- // thread that invokes the Start/Stop methods.
- // |params| is used to determine the frequency of callbacks.
- FakeAudioConsumer(
- const scoped_refptr<base::SingleThreadTaskRunner>& worker_task_runner,
- const AudioParameters& params);
- ~FakeAudioConsumer();
-
- // Start executing |read_cb| at a regular intervals. Stop() must be called by
- // the same thread before destroying FakeAudioConsumer.
- typedef base::Callback<void(AudioBus* audio_bus)> ReadCB;
- void Start(const ReadCB& read_cb);
-
- // Stop executing the ReadCB provided to Start(). Blocks until the worker
- // loop is not inside a ReadCB invocation. Safe to call multiple times. Must
- // be called on the same thread that called Start().
- void Stop();
-
- private:
- // All state and implementation is kept within this ref-counted class because
- // cancellation of posted tasks must happen on the worker thread some time
- // after the call to Stop() (on the main thread) returns.
- class Worker;
- const scoped_refptr<Worker> worker_;
-
- DISALLOW_COPY_AND_ASSIGN(FakeAudioConsumer);
-};
-
-} // namespace media
-
-#endif // MEDIA_AUDIO_FAKE_AUDIO_CONSUMER_H_
« no previous file with comments | « media/audio/audio_io.h ('k') | media/audio/fake_audio_consumer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698