chromium/media/audio/reconfigurable_audio_bus_pool.h

// Copyright 2023 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_AUDIO_RECONFIGURABLE_AUDIO_BUS_POOL_H_
#define MEDIA_AUDIO_RECONFIGURABLE_AUDIO_BUS_POOL_H_

#include <memory>

#include "media/base/audio_bus.h"
#include "media/base/audio_bus_pool.h"
#include "media/base/audio_parameters.h"
#include "media/base/media_export.h"
#include "media/base/reentrancy_checker.h"

namespace media {

class AudioBusPool;

class MEDIA_EXPORT ReconfigurableAudioBusPoolImpl : public AudioBusPool {};

}  // namespace media

#endif  // MEDIA_AUDIO_RECONFIGURABLE_AUDIO_BUS_POOL_H_