#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include "media/formats/webm/webm_info_parser.h"
#include "base/logging.h"
#include "media/formats/webm/webm_constants.h"
namespace media {
static const int kWebMDefaultTimecodeScale = …;
WebMInfoParser::WebMInfoParser() : … { … }
WebMInfoParser::~WebMInfoParser() = default;
int WebMInfoParser::Parse(const uint8_t* buf, int size) { … }
WebMParserClient* WebMInfoParser::OnListStart(int id) { … }
bool WebMInfoParser::OnListEnd(int id) { … }
bool WebMInfoParser::OnUInt(int id, int64_t val) { … }
bool WebMInfoParser::OnFloat(int id, double val) { … }
bool WebMInfoParser::OnBinary(int id, const uint8_t* data, int size) { … }
bool WebMInfoParser::OnString(int id, const std::string& str) { … }
}