#include "media/base/video_codecs.h"
#include "base/logging.h"
#include "base/notreached.h"
#include "base/strings/stringprintf.h"
namespace media {
std::string GetCodecName(VideoCodec codec) { … }
std::string GetCodecNameForUMA(VideoCodec codec) { … }
std::string GetProfileName(VideoCodecProfile profile) { … }
std::string BuildH264MimeSuffix(media::VideoCodecProfile profile,
uint8_t level) { … }
VideoCodec VideoCodecProfileToVideoCodec(VideoCodecProfile profile) { … }
std::ostream& operator<<(std::ostream& os, const VideoCodec& codec) { … }
}