// 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_AUDIO_HANDLER_H_ #define MEDIA_AUDIO_AUDIO_HANDLER_H_ #include "base/time/time.h" #include "media/base/media_export.h" namespace media { class AudioBus; // The implementations of the class are expected to return the decoded audio // data in order starting from the beginning of the stream via `CopyTo()` until // reaching the end of the stream. class MEDIA_EXPORT AudioHandler { … }; } // namespace media #endif // MEDIA_AUDIO_AUDIO_HANDLER_H_