// Copyright 2022 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_BASE_AUDIO_BUS_POOL_H_ #define MEDIA_BASE_AUDIO_BUS_POOL_H_ #include <memory> #include <stack> #include "base/synchronization/lock.h" #include "media/base/audio_bus.h" #include "media/base/audio_parameters.h" #include "media/base/media_export.h" namespace media { // Thread-safe interface for reusing AudioBuses. class MEDIA_EXPORT AudioBusPool { … }; class MEDIA_EXPORT AudioBusPoolImpl final : public AudioBusPool { … }; } // namespace media #endif // MEDIA_BASE_AUDIO_BUS_POOL_H_