| Index: chromecast/browser/media/cma_message_filter_host.cc
|
| diff --git a/chromecast/browser/media/cma_message_filter_host.cc b/chromecast/browser/media/cma_message_filter_host.cc
|
| index fa5864686fd47660d9186661a9f46161e1ff23f2..aeb2bc82a29b53a2a9614cf66baf247d1ca1c755 100644
|
| --- a/chromecast/browser/media/cma_message_filter_host.cc
|
| +++ b/chromecast/browser/media/cma_message_filter_host.cc
|
| @@ -536,7 +536,8 @@ void CmaMessageFilterHost::AudioInitialize(
|
| }
|
|
|
| void CmaMessageFilterHost::VideoInitialize(
|
| - int media_id, TrackId track_id, const ::media::VideoDecoderConfig& config) {
|
| + int media_id, TrackId track_id,
|
| + const std::vector<::media::VideoDecoderConfig>& configs) {
|
| DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
| MediaPipelineHost* media_pipeline = LookupById(media_id);
|
| if (!media_pipeline) {
|
| @@ -566,7 +567,7 @@ void CmaMessageFilterHost::VideoInitialize(
|
| FROM_HERE,
|
| base::Bind(&MediaPipelineHost::VideoInitialize,
|
| base::Unretained(media_pipeline),
|
| - track_id, client, config, pipeline_status_cb));
|
| + track_id, client, configs, pipeline_status_cb));
|
| }
|
|
|
| void CmaMessageFilterHost::StartPlayingFrom(
|
|
|