OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // IPC messages for the Cast Media Acceleration (CMA) pipeline. | 5 // IPC messages for the Cast Media Acceleration (CMA) pipeline. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "chromecast/common/media/cma_ipc_common.h" | 8 #include "chromecast/common/media/cma_ipc_common.h" |
9 #include "chromecast/common/media/cma_param_traits.h" | 9 #include "chromecast/common/media/cma_param_traits.h" |
10 #include "chromecast/common/media/cma_param_traits_macros.h" | 10 #include "chromecast/common/media/cma_param_traits_macros.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 int /* Media pipeline ID */) | 39 int /* Media pipeline ID */) |
40 IPC_MESSAGE_CONTROL1(CmaHostMsg_Stop, | 40 IPC_MESSAGE_CONTROL1(CmaHostMsg_Stop, |
41 int /* Media pipeline ID */) | 41 int /* Media pipeline ID */) |
42 IPC_MESSAGE_CONTROL2(CmaHostMsg_SetPlaybackRate, | 42 IPC_MESSAGE_CONTROL2(CmaHostMsg_SetPlaybackRate, |
43 int /* Media pipeline ID */, | 43 int /* Media pipeline ID */, |
44 float /* Playback rate */) | 44 float /* Playback rate */) |
45 | 45 |
46 IPC_MESSAGE_CONTROL3(CmaHostMsg_CreateAvPipe, | 46 IPC_MESSAGE_CONTROL3(CmaHostMsg_CreateAvPipe, |
47 int /* Media pipeline ID */, | 47 int /* Media pipeline ID */, |
48 chromecast::media::TrackId /* Track ID */, | 48 chromecast::media::TrackId /* Track ID */, |
49 size_t /* Fifo size */); | 49 size_t /* Fifo size */) |
50 IPC_MESSAGE_CONTROL3(CmaHostMsg_AudioInitialize, | 50 IPC_MESSAGE_CONTROL3(CmaHostMsg_AudioInitialize, |
51 int /* Media pipeline ID */, | 51 int /* Media pipeline ID */, |
52 chromecast::media::TrackId /* Track ID */, | 52 chromecast::media::TrackId /* Track ID */, |
53 media::AudioDecoderConfig /* Audio config */) | 53 media::AudioDecoderConfig /* Audio config */) |
54 IPC_MESSAGE_CONTROL3(CmaHostMsg_VideoInitialize, | 54 IPC_MESSAGE_CONTROL3(CmaHostMsg_VideoInitialize, |
55 int /* Media pipeline ID */, | 55 int /* Media pipeline ID */, |
56 chromecast::media::TrackId /* Track ID */, | 56 chromecast::media::TrackId /* Track ID */, |
57 media::VideoDecoderConfig /* Video config */) | 57 media::VideoDecoderConfig /* Video config */) |
58 IPC_MESSAGE_CONTROL3(CmaHostMsg_SetVolume, | 58 IPC_MESSAGE_CONTROL3(CmaHostMsg_SetVolume, |
59 int /* Media pipeline ID */, | 59 int /* Media pipeline ID */, |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 chromecast::media::TrackId /* Track ID */, | 106 chromecast::media::TrackId /* Track ID */, |
107 media::PipelineStatus /* status */) | 107 media::PipelineStatus /* status */) |
108 IPC_MESSAGE_CONTROL3(CmaMsg_PlaybackStatistics, | 108 IPC_MESSAGE_CONTROL3(CmaMsg_PlaybackStatistics, |
109 int /* Media pipeline ID */, | 109 int /* Media pipeline ID */, |
110 chromecast::media::TrackId /* Track ID */, | 110 chromecast::media::TrackId /* Track ID */, |
111 media::PipelineStatistics /* status */) | 111 media::PipelineStatistics /* status */) |
112 IPC_MESSAGE_CONTROL3(CmaMsg_NaturalSizeChanged, | 112 IPC_MESSAGE_CONTROL3(CmaMsg_NaturalSizeChanged, |
113 int /* Media pipeline ID */, | 113 int /* Media pipeline ID */, |
114 chromecast::media::TrackId /* Track ID */, | 114 chromecast::media::TrackId /* Track ID */, |
115 gfx::Size /* Size */) | 115 gfx::Size /* Size */) |
OLD | NEW |