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

Unified Diff: media/formats/mp2t/es_adapter_video.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_adapter_video.h
diff --git a/media/formats/mp2t/es_adapter_video.h b/media/formats/mp2t/es_adapter_video.h
index f2311694aa8e664d05b9b60f7b9ed86e1c2eb869..50c162e60d4936f871c83f124fecb15e285a0fea 100644
--- a/media/formats/mp2t/es_adapter_video.h
+++ b/media/formats/mp2t/es_adapter_video.h
@@ -54,7 +54,7 @@ class MEDIA_EXPORT EsAdapterVideo {
private:
typedef std::deque<scoped_refptr<StreamParserBuffer> > BufferQueue;
- typedef std::pair<int64, VideoDecoderConfig> ConfigEntry;
+ typedef std::pair<int64_t, VideoDecoderConfig> ConfigEntry;
void ProcessPendingBuffers(bool flush);
@@ -80,7 +80,7 @@ class MEDIA_EXPORT EsAdapterVideo {
std::list<ConfigEntry> config_list_;
// Global index of the first buffer in |buffer_list_|.
- int64 buffer_index_;
+ int64_t buffer_index_;
// List of buffer to be emitted and PTS of frames already emitted.
BufferQueue buffer_list_;

Powered by Google App Engine
This is Rietveld 408576698