#ifndef COMPONENTS_CAST_STREAMING_RENDERER_PUBLIC_DECODER_BUFFER_PROVIDER_H_
#define COMPONENTS_CAST_STREAMING_RENDERER_PUBLIC_DECODER_BUFFER_PROVIDER_H_
#include "base/functional/callback.h"
#include "base/memory/scoped_refptr.h"
namespace media {
class AudioDecoderConfig;
class DecoderBuffer;
class VideoDecoderConfig;
}
namespace cast_streaming {
template <typename TConfigType>
class DecoderBufferProvider;
AudioDecoderBufferProvider;
VideoDecoderBufferProvider;
template <typename TConfigType>
class DecoderBufferProvider { … };
}
#endif