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

Unified Diff: media/mp3/mp3_stream_parser.cc

Issue 23014009: media: Opus support for WebM in Media Source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing errors causing try bot failure Created 7 years, 3 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/filters/stream_parser_factory.cc ('k') | media/mp4/mp4_stream_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mp3/mp3_stream_parser.cc
diff --git a/media/mp3/mp3_stream_parser.cc b/media/mp3/mp3_stream_parser.cc
index 86348ffd2ce23703234fb5d5f7dfd5bbb10a842b..319c868775dc08a476e2c9bb9e3bdf5dbf4b88f7 100644
--- a/media/mp3/mp3_stream_parser.cc
+++ b/media/mp3/mp3_stream_parser.cc
@@ -378,7 +378,8 @@ int MP3StreamParser::ParseMP3Frame(const uint8* data, int size) {
if (!config_.IsValidConfig()) {
config_.Initialize(kCodecMP3, kSampleFormatF32, channel_layout,
- sample_rate, NULL, 0, false, false);
+ sample_rate, NULL, 0, false, false,
+ base::TimeDelta(), base::TimeDelta());
base::TimeDelta base_timestamp;
if (timestamp_helper_)
« no previous file with comments | « media/filters/stream_parser_factory.cc ('k') | media/mp4/mp4_stream_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698