| Index: media/formats/mp2t/es_parser_mpeg1audio.h
|
| diff --git a/media/formats/mp2t/es_parser_mpeg1audio.h b/media/formats/mp2t/es_parser_mpeg1audio.h
|
| index 6ffb197788a8dd28220a5a44dae815de80babac9..d1833e676ab27d00c83bb982c581c29c39337ec9 100644
|
| --- a/media/formats/mp2t/es_parser_mpeg1audio.h
|
| +++ b/media/formats/mp2t/es_parser_mpeg1audio.h
|
| @@ -41,7 +41,7 @@ class MEDIA_EXPORT EsParserMpeg1Audio : public EsParser {
|
|
|
| private:
|
| // Used to link a PTS with a byte position in the ES stream.
|
| - typedef std::pair<int64, base::TimeDelta> EsPts;
|
| + typedef std::pair<int64_t, base::TimeDelta> EsPts;
|
| typedef std::list<EsPts> EsPtsList;
|
|
|
| struct Mpeg1AudioFrame;
|
| @@ -61,7 +61,7 @@ class MEDIA_EXPORT EsParserMpeg1Audio : public EsParser {
|
| // Signal any audio configuration change (if any).
|
| // Return false if the current audio config is not
|
| // a supported Mpeg1 audio config.
|
| - bool UpdateAudioConfiguration(const uint8* mpeg1audio_header);
|
| + bool UpdateAudioConfiguration(const uint8_t* mpeg1audio_header);
|
|
|
| void SkipMpeg1AudioFrame(const Mpeg1AudioFrame& mpeg1audio_frame);
|
|
|
|
|