#include "media/formats/webm/webm_webvtt_parser.h"
namespace media {
void WebMWebVTTParser::Parse(const uint8_t* payload,
int payload_size,
std::string* id,
std::string* settings,
std::string* content) { … }
WebMWebVTTParser::WebMWebVTTParser(const uint8_t* payload, int payload_size)
: … { … }
void WebMWebVTTParser::Parse(std::string* id,
std::string* settings,
std::string* content) { … }
bool WebMWebVTTParser::GetByte(uint8_t* byte) { … }
void WebMWebVTTParser::UngetByte() { … }
void WebMWebVTTParser::ParseLine(std::string* line) { … }
}