blob: 69e3b970ccd5cfd7668ffeca5ebb97f62bee0381 [file] [log] [blame]
// 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 CONTENT_RENDERER_MEDIA_MOJO_AUDIO_INPUT_IPC_H_
#define CONTENT_RENDERER_MEDIA_MOJO_AUDIO_INPUT_IPC_H_
#include <string>
#include "base/callback_helpers.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "base/time/time.h"
#include "content/common/content_export.h"
#include "content/common/media/renderer_audio_input_stream_factory.mojom.h"
#include "media/audio/audio_input_ipc.h"
#include "media/mojo/interfaces/audio_input_stream.mojom.h"
#include "mojo/public/cpp/bindings/binding.h"
namespace content {
// MojoAudioInputIPC is a renderer-side class for handling creation,
// initialization and control of an input stream. May only be used on a single
// thread.
class CONTENT_EXPORT MojoAudioInputIPC
: public media::AudioInputIPC,
public mojom::RendererAudioInputStreamFactoryClient,
public media::mojom::AudioInputStreamClient {
public:
// This callback is used by MojoAudioInputIPC to create streams.
// It is expected that after calling, either client->StreamCreated() is
// called or |client| is destructed.
using StreamCreatorCB = base::RepeatingCallback<void(
mojom::RendererAudioInputStreamFactoryClientPtr client,
const media::AudioParameters& params,
bool automatic_gain_control,
uint32_t total_segments)>;
explicit MojoAudioInputIPC(StreamCreatorCB stream_creator);
~MojoAudioInputIPC() override;
// AudioInputIPC implementation
void CreateStream(media::AudioInputIPCDelegate* delegate,
const media::AudioParameters& params,
bool automatic_gain_control,
uint32_t total_segments) override;
void RecordStream() override;
void SetVolume(double volume) override;
void CloseStream() override;
private:
void StreamCreated(
media::mojom::AudioInputStreamPtr stream,
media::mojom::AudioInputStreamClientRequest stream_client_request,
media::mojom::AudioDataPipePtr data_pipe,
bool initially_muted) override;
void OnError() override;
void OnMutedStateChanged(bool is_muted) override;
StreamCreatorCB stream_creator_;
SEQUENCE_CHECKER(sequence_checker_);
media::mojom::AudioInputStreamPtr stream_;
mojo::Binding<AudioInputStreamClient> stream_client_binding_;
mojo::Binding<RendererAudioInputStreamFactoryClient> factory_client_binding_;
media::AudioInputIPCDelegate* delegate_ = nullptr;
base::TimeTicks stream_creation_start_time_;
base::WeakPtrFactory<MojoAudioInputIPC> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(MojoAudioInputIPC);
};
} // namespace content
#endif // CONTENT_RENDERER_MEDIA_MOJO_AUDIO_INPUT_IPC_H_