| Index: media/mp4/mp4_stream_parser.cc
|
| diff --git a/media/mp4/mp4_stream_parser.cc b/media/mp4/mp4_stream_parser.cc
|
| index 1aa8c7036983779e03706fcfdb1337cb83ebb310..b025b7ad527ba384e8798974808a10548058620d 100644
|
| --- a/media/mp4/mp4_stream_parser.cc
|
| +++ b/media/mp4/mp4_stream_parser.cc
|
| @@ -237,14 +237,7 @@ bool MP4StreamParser::ParseMoov(BoxReader* reader) {
|
| }
|
| }
|
|
|
| - // TODO(strobe): For now, we avoid sending new configs on a new
|
| - // reinitialization segment, and instead simply embed the updated parameter
|
| - // sets into the video stream. The conditional should be removed when
|
| - // http://crbug.com/122913 is fixed. (We detect whether we've already sent
|
| - // configs by looking at init_cb_ instead of config_cb_, because init_cb_
|
| - // should only be fired once even after that bug is fixed.)
|
| - if (!init_cb_.is_null())
|
| - RCHECK(config_cb_.Run(audio_config, video_config));
|
| + RCHECK(config_cb_.Run(audio_config, video_config));
|
|
|
| base::TimeDelta duration;
|
| if (moov_->extends.header.fragment_duration > 0) {
|
|
|