// 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_DEMUXER_STREAM_H_ #define MEDIA_BASE_DEMUXER_STREAM_H_ #include <vector> #include "base/functional/callback.h" #include "base/memory/scoped_refptr.h" #include "media/base/media_export.h" #include "media/base/video_transformation.h" namespace media { class AudioDecoderConfig; class DecoderBuffer; class VideoDecoderConfig; enum class StreamLiveness { … }; MEDIA_EXPORT std::string GetStreamLivenessName(StreamLiveness liveness); class MEDIA_EXPORT DemuxerStream { … }; } // namespace media #endif // MEDIA_BASE_DEMUXER_STREAM_H_