| Index: media/formats/mp2t/es_parser_h264.h
|
| diff --git a/media/formats/mp2t/es_parser_h264.h b/media/formats/mp2t/es_parser_h264.h
|
| index 184ac0798fb428e6d4fdc9b2deb0042495a0fea8..d361e1c3ff3340de629c8461b9f9521cec3ab4fb 100644
|
| --- a/media/formats/mp2t/es_parser_h264.h
|
| +++ b/media/formats/mp2t/es_parser_h264.h
|
| @@ -7,12 +7,12 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <utility>
|
|
|
| #include "base/callback.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "media/base/media_export.h"
|
| #include "media/base/video_decoder_config.h"
|
| @@ -78,7 +78,7 @@ class MEDIA_EXPORT EsParserH264 : public EsParser {
|
| // H264 parser state.
|
| // - |current_access_unit_pos_| is pointing to an annexB syncword
|
| // representing the first NALU of an H264 access unit.
|
| - scoped_ptr<H264Parser> h264_parser_;
|
| + std::unique_ptr<H264Parser> h264_parser_;
|
| int64_t current_access_unit_pos_;
|
| int64_t next_access_unit_pos_;
|
|
|
|
|