#ifndef MEDIA_BASE_DECODER_H_
#define MEDIA_BASE_DECODER_H_
#include <ostream>
#include <string>
#include "media/base/media_export.h"
#include "media/base/status.h"
namespace media {
enum class AudioDecoderType : int { … };
enum class VideoDecoderType : int { … };
MEDIA_EXPORT std::string GetDecoderName(AudioDecoderType type);
MEDIA_EXPORT std::string GetDecoderName(VideoDecoderType type);
MEDIA_EXPORT std::ostream& operator<<(std::ostream& out, AudioDecoderType type);
MEDIA_EXPORT std::ostream& operator<<(std::ostream& out, VideoDecoderType type);
class MEDIA_EXPORT Decoder { … };
}
#endif