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

Unified Diff: chromecast/public/media/media_pipeline_device_params.h

Issue 2701613006: [Chromecast] Process streams with different post-processing. (Closed)
Patch Set: Move audio_device_ids to chromecast/media/base Created 3 years, 10 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/public/media/media_pipeline_device_params.h
diff --git a/chromecast/public/media/media_pipeline_device_params.h b/chromecast/public/media/media_pipeline_device_params.h
index 680da27cd25f9761209090867bb07ad37d56b041..3e530fe9a6db22859301418bebf04176025a1297 100644
--- a/chromecast/public/media/media_pipeline_device_params.h
+++ b/chromecast/public/media/media_pipeline_device_params.h
@@ -55,8 +55,18 @@ struct MediaPipelineDeviceParams {
audio_type(audio_type_in),
task_runner(task_runner_in) {}
+ MediaPipelineDeviceParams(MediaSyncType sync_type_in,
+ AudioStreamType audio_type_in,
+ std::string name_in,
wzhong 2017/02/22 16:13:01 const &
bshaya 2017/02/22 20:45:25 Done.
+ TaskRunner* task_runner_in)
+ : sync_type(sync_type_in),
+ audio_type(audio_type_in),
+ name(name_in),
+ task_runner(task_runner_in) {}
+
const MediaSyncType sync_type;
const AudioStreamType audio_type;
+ const std::string name;
// task_runner allows backend implementations to post tasks to the media
// thread. Since all calls from cast_shell into the backend are made on
« chromecast/media/cma/backend/alsa/filter_group.h ('K') | « chromecast/public/media/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698