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

Unified Diff: media/audio/audio_debug_recording_helper.cc

Issue 2582703003: Audio output debug recording. (Closed)
Patch Set: Code review. Created 3 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
Index: media/audio/audio_debug_recording_helper.cc
diff --git a/media/audio/audio_debug_recording_helper.cc b/media/audio/audio_debug_recording_helper.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6056d3f0dd9d95f512fb85fc7ba3141dc1c61599
--- /dev/null
+++ b/media/audio/audio_debug_recording_helper.cc
@@ -0,0 +1,83 @@
+// Copyright 2017 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.
+
+#include "media/audio/audio_debug_recording_helper.h"
+
+#include "base/bind.h"
+#include "base/files/file_path.h"
+#include "base/single_thread_task_runner.h"
+#include "media/audio/audio_manager.h"
+
+namespace media {
+
+AudioDebugRecordingHelper::AudioDebugRecordingHelper(
+ const AudioParameters& params,
+ const AudioFileWriter::CreateCallback& create_audio_file_writer_callback,
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner,
+ base::OnceClosure on_destruction_closure)
+ : params_(params),
+ create_audio_file_writer_callback_(create_audio_file_writer_callback),
+ recording_enabled_(0),
+ task_runner_(std::move(task_runner)),
+ on_destruction_closure_(std::move(on_destruction_closure)),
+ weak_factory_(this) {
+ DCHECK(create_audio_file_writer_callback_);
+}
+
+AudioDebugRecordingHelper::~AudioDebugRecordingHelper() {
+ if (on_destruction_closure_)
+ std::move(on_destruction_closure_).Run();
+}
+
+void AudioDebugRecordingHelper::EnableDebugRecording(
+ const base::FilePath& file_name) {
+ DCHECK(task_runner_->BelongsToCurrentThread());
+ DCHECK(!debug_writer_);
+ DCHECK(!file_name.empty());
+
+ debug_writer_ = create_audio_file_writer_callback_.Run(params_);
+ debug_writer_->Start(
+ file_name.AddExtension(debug_writer_->GetFileNameExtension()));
+
+ base::subtle::Release_Store(&recording_enabled_, 1);
o1ka 2017/02/10 15:21:53 Let's do NoBarrier everywhere as per offline discu
Henrik Grunell 2017/02/13 15:16:48 Done.
+}
+
+void AudioDebugRecordingHelper::DisableDebugRecording() {
+ DCHECK(task_runner_->BelongsToCurrentThread());
+
+ base::subtle::Acquire_Store(&recording_enabled_, 0);
+
+ if (debug_writer_) {
+ debug_writer_->Stop();
+ debug_writer_.reset();
+ }
+}
+
+void AudioDebugRecordingHelper::OnData(const AudioBus* source) {
+ base::subtle::Atomic32 recording_enabled =
+ base::subtle::Acquire_Load(&recording_enabled_);
+ if (!recording_enabled)
+ return;
+
+ // TODO(grunell) Don't create a new AudioBus each time. Maybe a pool of
+ // AudioBuses. See also comment in
+ // AudioInputController::AudioCallback::PerformOptionalDebugRecording.
+ std::unique_ptr<AudioBus> audio_bus_copy =
+ AudioBus::Create(source->channels(), source->frames());
+ source->CopyTo(audio_bus_copy.get());
+
+ task_runner_->PostTask(
+ FROM_HERE,
+ base::Bind(&AudioDebugRecordingHelper::DoWrite,
+ weak_factory_.GetWeakPtr(), base::Passed(&audio_bus_copy)));
+}
+
+void AudioDebugRecordingHelper::DoWrite(std::unique_ptr<media::AudioBus> data) {
+ DCHECK(task_runner_->BelongsToCurrentThread());
+
+ if (debug_writer_)
+ debug_writer_->Write(std::move(data));
+}
+
+} // namespace media

Powered by Google App Engine
This is Rietveld 408576698