Home
last modified time | relevance | path

Searched refs:Mp2tStreamParser (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/media/mp2t/
Dmp2t_stream_parser.cc142 Mp2tStreamParser::BufferQueueWithConfig::BufferQueueWithConfig( in BufferQueueWithConfig()
151 Mp2tStreamParser::BufferQueueWithConfig::~BufferQueueWithConfig() { in ~BufferQueueWithConfig()
154 Mp2tStreamParser::Mp2tStreamParser(bool sbr_in_mimetype) in Mp2tStreamParser() function in media::mp2t::Mp2tStreamParser
163 Mp2tStreamParser::~Mp2tStreamParser() { in ~Mp2tStreamParser()
167 void Mp2tStreamParser::Init( in Init()
193 void Mp2tStreamParser::Flush() { in Flush()
223 bool Mp2tStreamParser::Parse(const uint8* buf, int size) { in Parse()
263 base::Bind(&Mp2tStreamParser::RegisterPmt, in Parse()
291 void Mp2tStreamParser::RegisterPmt(int program_number, int pmt_pid) { in RegisterPmt()
311 base::Bind(&Mp2tStreamParser::RegisterPes, in RegisterPmt()
[all …]
Dmp2t_stream_parser.h27 class MEDIA_EXPORT Mp2tStreamParser : public StreamParser {
29 explicit Mp2tStreamParser(bool sbr_in_mimetype);
30 virtual ~Mp2tStreamParser();
129 DISALLOW_COPY_AND_ASSIGN(Mp2tStreamParser);
Dmp2t_stream_parser_unittest.cc33 parser_.reset(new Mp2tStreamParser(has_sbr)); in Mp2tStreamParserTest()
37 scoped_ptr<Mp2tStreamParser> parser_;
/external/chromium_org/media/filters/
Dstream_parser_factory.cc232 return new media::mp2t::Mp2tStreamParser(has_sbr); in BuildMP2TParser()