// Copyright 2012 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_FIFO_H_ #define MEDIA_BASE_AUDIO_FIFO_H_ #include <memory> #include "media/base/audio_bus.h" #include "media/base/media_export.h" namespace media { // First-in first-out container for AudioBus elements. // The maximum number of audio frames in the FIFO is set at construction and // can not be extended dynamically. The allocated memory is utilized as a // ring buffer. // This class is thread-unsafe. class MEDIA_EXPORT AudioFifo { … }; } // namespace media #endif // MEDIA_BASE_AUDIO_FIFO_H_