Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(659)

Unified Diff: media/formats/mp2t/es_parser_mpeg1audio.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698