// Copyright 2014 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_BLOCK_FIFO_H_ #define MEDIA_BASE_AUDIO_BLOCK_FIFO_H_ #include "media/base/audio_bus.h" #include "media/base/media_export.h" namespace media { // First-in first-out container for AudioBus elements. // The FIFO is composed of blocks of AudioBus elements, it accepts interleaved // data as input and will deinterleave it into the FIFO, and it only allows // consuming a whole block of AudioBus element. // This class is thread-unsafe. class MEDIA_EXPORT AudioBlockFifo { … }; } // namespace media #endif // MEDIA_BASE_AUDIO_BLOCK_FIFO_H_