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

Unified Diff: media/formats/common/stream_parser_test_base.cc

Issue 1564983003: MSE: Log a warning if muxed AV media segment has no A or has no V block (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: media/formats/common/stream_parser_test_base.cc
diff --git a/media/formats/common/stream_parser_test_base.cc b/media/formats/common/stream_parser_test_base.cc
index de80bac73f872c983bc7ed7d77517595ef866af4..b7c8d50aedfd1dade581bdba30da66adcbb08f9d 100644
--- a/media/formats/common/stream_parser_test_base.cc
+++ b/media/formats/common/stream_parser_test_base.cc
@@ -122,9 +122,10 @@ void StreamParserTestBase::OnNewSegment() {
results_stream_ << "NewSegment";
}
-void StreamParserTestBase::OnEndOfSegment() {
+bool StreamParserTestBase::OnEndOfSegment() {
DVLOG(1) << __FUNCTION__;
results_stream_ << "EndOfSegment";
+ return true; // BIG TODO : test
chcunningham 2016/01/07 22:23:57 :)
wolenetz 2016/01/16 01:23:35 No longer changed (PS5, at least).
}
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698