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

Unified Diff: media/base/audio_video_metadata_extractor_unittest.cc

Issue 2534193003: To M56: Roll src/third_party/ffmpeg/ 3c7a09882..cdf4accee (3188 commits). (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « media/base/audio_video_metadata_extractor.cc ('k') | media/base/media_file_checker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_video_metadata_extractor_unittest.cc
diff --git a/media/base/audio_video_metadata_extractor_unittest.cc b/media/base/audio_video_metadata_extractor_unittest.cc
index a24ea2d75538d3090ed532c7ae4643b5ccb192a8..a9cc5eca1887e07ddbdb9d6cf7acc108fbb772eb 100644
--- a/media/base/audio_video_metadata_extractor_unittest.cc
+++ b/media/base/audio_video_metadata_extractor_unittest.cc
@@ -136,7 +136,7 @@ TEST(AudioVideoMetadataExtractorTest, AndroidRotatedMP4Video) {
EXPECT_EQ(4u, extractor->stream_infos()[0].tags.size());
EXPECT_EQ("isom3gp4", GetTagValue(extractor->stream_infos()[0].tags,
"compatible_brands"));
- EXPECT_EQ("2014-02-11 00:39:25",
+ EXPECT_EQ("2014-02-11T00:39:25.000000Z",
GetTagValue(extractor->stream_infos()[0].tags, "creation_time"));
EXPECT_EQ("isom",
GetTagValue(extractor->stream_infos()[0].tags, "major_brand"));
@@ -145,7 +145,7 @@ TEST(AudioVideoMetadataExtractorTest, AndroidRotatedMP4Video) {
EXPECT_EQ("h264", extractor->stream_infos()[1].type);
EXPECT_EQ(5u, extractor->stream_infos()[1].tags.size());
- EXPECT_EQ("2014-02-11 00:39:25",
+ EXPECT_EQ("2014-02-11T00:39:25.000000Z",
GetTagValue(extractor->stream_infos()[1].tags, "creation_time"));
EXPECT_EQ("VideoHandle",
GetTagValue(extractor->stream_infos()[1].tags, "handler_name"));
@@ -154,7 +154,7 @@ TEST(AudioVideoMetadataExtractorTest, AndroidRotatedMP4Video) {
EXPECT_EQ("aac", extractor->stream_infos()[2].type);
EXPECT_EQ(3u, extractor->stream_infos()[2].tags.size());
- EXPECT_EQ("2014-02-11 00:39:25",
+ EXPECT_EQ("2014-02-11T00:39:25.000000Z",
GetTagValue(extractor->stream_infos()[2].tags, "creation_time"));
EXPECT_EQ("SoundHandle",
GetTagValue(extractor->stream_infos()[2].tags, "handler_name"));
« no previous file with comments | « media/base/audio_video_metadata_extractor.cc ('k') | media/base/media_file_checker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698