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

Unified Diff: media/formats/mp4/mp4_stream_parser_unittest.cc

Issue 231283005: Add live mode detection in WebM MediaSource parser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/mp4/mp4_stream_parser_unittest.cc
diff --git a/media/formats/mp4/mp4_stream_parser_unittest.cc b/media/formats/mp4/mp4_stream_parser_unittest.cc
index 6f58c6a99dc9c3704eda68646856a026d2846672..b46e40d38e33dfb0f3ab5cc8e7ce61c4426756a2 100644
--- a/media/formats/mp4/mp4_stream_parser_unittest.cc
+++ b/media/formats/mp4/mp4_stream_parser_unittest.cc
@@ -61,9 +61,11 @@ class MP4StreamParserTest : public testing::Test {
void InitF(bool init_ok,
base::TimeDelta duration,
base::Time wallclock_timeline_offset,
- bool auto_update_timestamp_offset) {
+ bool auto_update_timestamp_offset,
+ bool live_mode) {
DVLOG(1) << "InitF: ok=" << init_ok << ", dur=" << duration.InMilliseconds()
- << ", autoTimestampOffset=" << auto_update_timestamp_offset;
+ << ", autoTimestampOffset=" << auto_update_timestamp_offset
+ << ", liveMode=" << live_mode;
}
bool NewConfigF(const AudioDecoderConfig& ac,

Powered by Google App Engine
This is Rietveld 408576698