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

Unified Diff: chromecast/common/media/cma_messages.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/common/media/cma_messages.h
diff --git a/chromecast/common/media/cma_messages.h b/chromecast/common/media/cma_messages.h
index 3fbed3dbad776fdf87a1545152a9f53f79131e51..1edb9827794b29ccbdc8ee710b96c45d788bc303 100644
--- a/chromecast/common/media/cma_messages.h
+++ b/chromecast/common/media/cma_messages.h
@@ -50,11 +50,12 @@ IPC_MESSAGE_CONTROL3(CmaHostMsg_CreateAvPipe,
IPC_MESSAGE_CONTROL3(CmaHostMsg_AudioInitialize,
int /* Media pipeline ID */,
chromecast::media::TrackId /* Track ID */,
- media::AudioDecoderConfig /* Audio config */)
+ ::media::AudioDecoderConfig /* Audio config */)
IPC_MESSAGE_CONTROL3(CmaHostMsg_VideoInitialize,
int /* Media pipeline ID */,
chromecast::media::TrackId /* Track ID */,
- media::VideoDecoderConfig /* Video config */)
+ /* Video Config */
+ std::vector<::media::VideoDecoderConfig>)
IPC_MESSAGE_CONTROL3(CmaHostMsg_SetVolume,
int /* Media pipeline ID */,
chromecast::media::TrackId /* Track ID */,
@@ -112,4 +113,4 @@ IPC_MESSAGE_CONTROL3(CmaMsg_PlaybackStatistics,
IPC_MESSAGE_CONTROL3(CmaMsg_NaturalSizeChanged,
int /* Media pipeline ID */,
chromecast::media::TrackId /* Track ID */,
- gfx::Size /* Size */)
+ gfx::Size /* Size */)
« no previous file with comments | « chromecast/browser/media/media_pipeline_host.cc ('k') | chromecast/media/cma/base/buffering_frame_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698