| Index: media/mpeg2/es_parser.h
|
| diff --git a/media/mpeg2/es_parser.h b/media/mpeg2/es_parser.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..eed7de4acb19816b14b2c407941915d730c51988
|
| --- /dev/null
|
| +++ b/media/mpeg2/es_parser.h
|
| @@ -0,0 +1,40 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef MEDIA_MPEG2_ES_PARSER_H_
|
| +#define MEDIA_MPEG2_ES_PARSER_H_
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "base/time/time.h"
|
| +
|
| +namespace media {
|
| +
|
| +class StreamParserBuffer;
|
| +
|
| +namespace mpeg2ts {
|
| +
|
| +class EsParser {
|
| + public:
|
| + typedef base::Callback<void(scoped_refptr<StreamParserBuffer>)> EmitBufferCB;
|
| +
|
| + EsParser() {}
|
| + virtual ~EsParser() {}
|
| +
|
| + // ES parsing.
|
| + // Should use kNoTimestamp when a timestamp is not valid.
|
| + virtual bool Parse(const uint8* buf, int size,
|
| + base::TimeDelta pts,
|
| + base::TimeDelta dts) = 0;
|
| +
|
| + // Flush any pending buffer.
|
| + virtual void Flush() = 0;
|
| +
|
| + // Reset the state of the ES parser.
|
| + virtual void Reset() = 0;
|
| +};
|
| +
|
| +} // namespace mpeg2ts
|
| +} // namespace media
|
| +
|
| +#endif
|
|
|