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

Unified Diff: media/formats/mp2t/es_parser_mpeg1audio_unittest.cc

Issue 646673002: Skip audio frames with unknown timestamp in MPEG2TS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/skip/skipping/ Created 6 years, 2 months 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/formats/mp2t/es_parser_mpeg1audio.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/mp2t/es_parser_mpeg1audio_unittest.cc
diff --git a/media/formats/mp2t/es_parser_mpeg1audio_unittest.cc b/media/formats/mp2t/es_parser_mpeg1audio_unittest.cc
index 0f88e8d68fa67b4c5890103dc88b8f210c43d607..0571f058173208cb4c383b0433d90d520a3acbc7 100644
--- a/media/formats/mp2t/es_parser_mpeg1audio_unittest.cc
+++ b/media/formats/mp2t/es_parser_mpeg1audio_unittest.cc
@@ -68,5 +68,17 @@ TEST_F(EsParserMpeg1AudioTest, SinglePts) {
EXPECT_EQ(12u, buffer_count_);
}
+TEST_F(EsParserMpeg1AudioTest, NoTimingInfo) {
+ LoadStream("sfx.mp3");
+ std::vector<Packet> pes_packets = GenerateFixedSizePesPacket(512);
+
+ // Process should succeed even without timing info, we should just skip the
+ // audio frames without timing info, but still should be able to parse and
+ // play the stream after that.
+ EXPECT_TRUE(Process(pes_packets, false));
+ EXPECT_EQ(1u, config_count_);
+ EXPECT_EQ(0u, buffer_count_);
+}
+
} // namespace mp2t
} // namespace media
« no previous file with comments | « media/formats/mp2t/es_parser_mpeg1audio.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698