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

Unified Diff: chromecast/renderer/media/video_pipeline_proxy.h

Issue 1148253006: Chromecast: Use std::vector to pass video config in CMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove DCHECK when config is updated. Will create another CL for the change Created 5 years, 6 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: chromecast/renderer/media/video_pipeline_proxy.h
diff --git a/chromecast/renderer/media/video_pipeline_proxy.h b/chromecast/renderer/media/video_pipeline_proxy.h
index b15e3c6a8d1c50e1987dc737359f04882e8ad2cf..1dbf13ec0b80881e9b68fa9a3bc2401a7c3f093d 100644
--- a/chromecast/renderer/media/video_pipeline_proxy.h
+++ b/chromecast/renderer/media/video_pipeline_proxy.h
@@ -36,7 +36,7 @@ class VideoPipelineProxy : public VideoPipeline {
scoped_refptr<MediaChannelProxy> media_channel_proxy);
~VideoPipelineProxy() override;
- void Initialize(const ::media::VideoDecoderConfig& config,
+ void Initialize(const std::vector<::media::VideoDecoderConfig>& configs,
scoped_ptr<CodedFrameProvider> frame_provider,
const ::media::PipelineStatusCB& status_cb);
void StartFeeding();
@@ -50,7 +50,7 @@ class VideoPipelineProxy : public VideoPipeline {
base::ThreadChecker thread_checker_;
void OnAvPipeCreated(
- const ::media::VideoDecoderConfig& config,
+ const std::vector<::media::VideoDecoderConfig>& configs,
const ::media::PipelineStatusCB& status_cb,
scoped_ptr<base::SharedMemory> shared_memory);
void OnPipeWrite();
« no previous file with comments | « chromecast/renderer/media/media_pipeline_proxy.cc ('k') | chromecast/renderer/media/video_pipeline_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698