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

Unified Diff: media/ffmpeg/ffmpeg_common_unittest.cc

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/ffmpeg/ffmpeg_common_unittest.cc
diff --git a/media/ffmpeg/ffmpeg_common_unittest.cc b/media/ffmpeg/ffmpeg_common_unittest.cc
index 9a735872cf3ca4fb796bc1292414870bcd35a94d..bc575f981dc7595512cccfecbf56991b857072bf 100644
--- a/media/ffmpeg/ffmpeg_common_unittest.cc
+++ b/media/ffmpeg/ffmpeg_common_unittest.cc
@@ -136,10 +136,8 @@ TEST_F(FFmpegCommonTest, OpusAudioDecoderConfig) {
}
TEST_F(FFmpegCommonTest, TimeBaseConversions) {
- const int64 test_data[][5] = {
- {1, 2, 1, 500000, 1 },
- {1, 3, 1, 333333, 1 },
- {1, 3, 2, 666667, 2 },
+ const int64_t test_data[][5] = {
+ {1, 2, 1, 500000, 1}, {1, 3, 1, 333333, 1}, {1, 3, 2, 666667, 2},
};
for (size_t i = 0; i < arraysize(test_data); ++i) {

Powered by Google App Engine
This is Rietveld 408576698