| Index: chromecast/browser/media/media_pipeline_host.cc
|
| diff --git a/chromecast/browser/media/media_pipeline_host.cc b/chromecast/browser/media/media_pipeline_host.cc
|
| index ff3eb6926f9f567f0105f8496d637f80f457a86f..29f436bca67bb8c9235b1267683736c5f22a0083 100644
|
| --- a/chromecast/browser/media/media_pipeline_host.cc
|
| +++ b/chromecast/browser/media/media_pipeline_host.cc
|
| @@ -118,13 +118,13 @@ void MediaPipelineHost::AudioInitialize(
|
| void MediaPipelineHost::VideoInitialize(
|
| TrackId track_id,
|
| const VideoPipelineClient& client,
|
| - const ::media::VideoDecoderConfig& config,
|
| + const std::vector<::media::VideoDecoderConfig>& configs,
|
| const ::media::PipelineStatusCB& status_cb) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| CHECK(track_id == kVideoTrackId);
|
| media_pipeline_->GetVideoPipeline()->SetClient(client);
|
| media_pipeline_->InitializeVideo(
|
| - config, scoped_ptr<CodedFrameProvider>(), status_cb);
|
| + configs, scoped_ptr<CodedFrameProvider>(), status_cb);
|
| }
|
|
|
| void MediaPipelineHost::StartPlayingFrom(base::TimeDelta time) {
|
|
|