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

Unified Diff: media/mojo/services/mojo_audio_output_stream_provider.h

Issue 2697793002: Add mojo interface+impl for audio stream control. (Closed)
Patch Set: review. Created 3 years, 9 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/mojo/services/mojo_audio_output_stream_provider.h
diff --git a/media/mojo/services/mojo_audio_output_stream_provider.h b/media/mojo/services/mojo_audio_output_stream_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..141193ae9dbeaf1aa1494dc6a392836ef4b3dbc5
--- /dev/null
+++ b/media/mojo/services/mojo_audio_output_stream_provider.h
@@ -0,0 +1,60 @@
+// 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.
+
+#ifndef MEDIA_MOJO_SERVICES_MOJO_AUDIO_OUTPUT_STREAM_PROVIDER_H_
+#define MEDIA_MOJO_SERVICES_MOJO_AUDIO_OUTPUT_STREAM_PROVIDER_H_
+
+#include <memory>
+#include <string>
+
+#include "base/threading/thread_checker.h"
+#include "media/audio/audio_output_delegate.h"
+#include "media/mojo/interfaces/audio_output_stream.mojom.h"
+#include "media/mojo/services/media_mojo_export.h"
+#include "media/mojo/services/mojo_audio_output_stream.h"
+#include "mojo/public/cpp/bindings/binding.h"
+
+namespace media {
+
+// Provides a single AudioOutput, given the audio parameters to use.
+class MEDIA_MOJO_EXPORT MojoAudioOutputStreamProvider
+ : public mojom::AudioOutputStreamProvider {
+ public:
+ using CreateDelegateCallback =
+ base::OnceCallback<std::unique_ptr<AudioOutputDelegate>(
+ const AudioParameters& params,
+ AudioOutputDelegate::EventHandler*)>;
+ using DeleterCallback = base::Callback<void(AudioOutputStreamProvider*)>;
+
+ // |create_delegate_callback| is used to obtain an AudioOutputDelegate for the
+ // AudioOutput when it's initialized and |deleter_callback| is called when
+ // this class should be removed (stream ended/error). |deleter_callback| is
+ // required to destroy |this| synchronously.
+ MojoAudioOutputStreamProvider(mojom::AudioOutputStreamProviderRequest request,
+ CreateDelegateCallback create_delegate_callback,
+ DeleterCallback deleter_callback);
+
+ ~MojoAudioOutputStreamProvider() override;
+
+ private:
+ // mojom::AudioOutputStreamProvider implementation.
+ void Acquire(mojom::AudioOutputStreamRequest stream_request,
+ const AudioParameters& params,
+ const AcquireCallback& acquire_callback) override;
+
+ // The callback for the Acquire() must be stored until the response is ready.
+ AcquireCallback acquire_callback_;
+
+ base::Optional<MojoAudioOutputStream> audio_output_;
+ mojo::Binding<AudioOutputStreamProvider> binding_;
+ CreateDelegateCallback create_delegate_callback_;
+ base::Closure deleter_callback_;
+ base::ThreadChecker thread_checker_;
+
+ DISALLOW_COPY_AND_ASSIGN(MojoAudioOutputStreamProvider);
+};
+
+} // namespace media
+
+#endif // MEDIA_MOJO_SERVICES_MOJO_AUDIO_OUTPUT_STREAM_PROVIDER_H_

Powered by Google App Engine
This is Rietveld 408576698