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

Unified Diff: media/base/pipeline_status.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/base/pipeline_status.h
diff --git a/media/base/pipeline_status.h b/media/base/pipeline_status.h
index b59219ca98606d14179cbd8a8f5cde1542afb3e4..858d5a66de7d0f139978d0bd0b8b4c9900a9a3de 100644
--- a/media/base/pipeline_status.h
+++ b/media/base/pipeline_status.h
@@ -39,10 +39,10 @@ enum PipelineStatus {
typedef base::Callback<void(PipelineStatus)> PipelineStatusCB;
struct PipelineStatistics {
- uint64_t audio_bytes_decoded = 0; // Should be uint64?
- uint32 video_bytes_decoded = 0; // Should be uint64?
- uint32 video_frames_decoded = 0;
- uint32 video_frames_dropped = 0;
+ uint64_t audio_bytes_decoded = 0; // Should be uint64_t?
+ uint32_t video_bytes_decoded = 0; // Should be uint64_t?
+ uint32_t video_frames_decoded = 0;
+ uint32_t video_frames_dropped = 0;
int64_t audio_memory_usage = 0;
int64_t video_memory_usage = 0;
};

Powered by Google App Engine
This is Rietveld 408576698