chromium/media/mojo/services/mojo_audio_encoder_service.h

// Copyright 2021 The Chromium Authors
// 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_ENCODER_SERVICE_H_
#define MEDIA_MOJO_SERVICES_MOJO_AUDIO_ENCODER_SERVICE_H_

#include <stdint.h>

#include <memory>
#include <optional>

#include "base/memory/weak_ptr.h"
#include "media/base/audio_encoder.h"
#include "media/base/status.h"
#include "media/mojo/mojom/audio_encoder.mojom.h"
#include "media/mojo/services/media_mojo_export.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/pending_associated_remote.h"

namespace media {

class MEDIA_MOJO_EXPORT MojoAudioEncoderService final
    : public mojom::AudioEncoder {};

}  // namespace media

#endif  // MEDIA_MOJO_SERVICES_MOJO_AUDIO_ENCODER_SERVICE_H_