forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-launch-cluster.xml
208 lines (184 loc) · 8.21 KB
/
content-launch-cluster.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?xml version="1.0"?>
<!--
Copyright (c) 2021-2023 Project CHIP Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<configurator>
<domain name="CHIP"/>
<cluster>
<domain>Media</domain>
<name>Content Launcher</name>
<code>0x050a</code>
<define>CONTENT_LAUNCHER_CLUSTER</define>
<client init="false" tick="false">true</client>
<server init="false" tick="false">true</server>
<description>This cluster provides an interface for launching content on a media player device such as a TV or Speaker.</description>
<globalAttribute side="either" code="0xFFFD" value="1"/>
<attribute side="server" code="0x0000" name="AcceptHeader" define="CONTENT_LAUNCHER_ACCEPT_HEADER" type="array" entryType="char_string" length="254" optional="true">
<mandatoryConform>
<feature name="UP"/>
</mandatoryConform>
</attribute>
<attribute side="server" code="0x0001" name="SupportedStreamingProtocols" define="CONTENT_LAUNCHER_SUPPORTED_STREAMING_PROTOCOLS" type="SupportedProtocolsBitmap" default="0" optional="true">
<mandatoryConform>
<feature name="UP"/>
</mandatoryConform>
</attribute>
<command source="client" code="0x00" name="LaunchContent" response="LauncherResponse" optional="true">
<description>Upon receipt, this SHALL launch the specified content with optional search criteria.</description>
<arg name="Search" type="ContentSearchStruct"/>
<arg name="AutoPlay" type="boolean"/>
<arg name="Data" type="char_string" optional="true"/>
<arg name="PlaybackPreferences" type="PlaybackPreferencesStruct" optional="true"/>
<arg name="UseCurrentContext" type="boolean" optional="true"/>
<mandatoryConform>
<feature name="CS"/>
</mandatoryConform>
</command>
<command source="client" code="0x01" name="LaunchURL" response="LauncherResponse" optional="true">
<description>Upon receipt, this SHALL launch content from the specified URL.</description>
<arg name="ContentURL" type="char_string"/>
<arg name="DisplayString" type="char_string" optional="true"/>
<arg name="BrandingInformation" type="BrandingInformationStruct" optional="true"/>
<mandatoryConform>
<feature name="UP"/>
</mandatoryConform>
</command>
<command source="server" code="0x02" name="LauncherResponse" optional="true" disableDefaultResponse="true">
<description>This command SHALL be generated in response to LaunchContent command.</description>
<arg name="Status" type="StatusEnum"/>
<arg name="Data" type="char_string" optional="true"/>
<mandatoryConform>
<orTerm>
<feature name="CS"/>
<feature name="UP"/>
</orTerm>
</mandatoryConform>
</command>
</cluster>
<struct name="ContentSearchStruct">
<cluster code="0x050a"/>
<item name="ParameterList" type="ParameterStruct" array="true" optional="false"/>
</struct>
<struct name="AdditionalInfoStruct">
<cluster code="0x050a"/>
<item name="Name" type="char_string" length="256" />
<!-- TODO: spec sets this max size, but seems impossible given UDP size limits -->
<item name="Value" type="char_string" length="8192" />
</struct>
<enum name="MetricTypeEnum" type="enum8">
<cluster code="0x050a"/>
<item name="Pixels" value="0x00"/>
<item name="Percentage" value="0x01"/>
</enum>
<struct name="DimensionStruct">
<cluster code="0x050a"/>
<item name="Width" type="double" optional="false"/>
<item name="Height" type="double" optional="false"/>
<item name="Metric" type="MetricTypeEnum"/>
</struct>
<struct name="StyleInformationStruct">
<cluster code="0x050a"/>
<!-- TODO: spec sets this max size, but seems impossible given UDP size limits -->
<item name="ImageURL" type="char_string" length="8192" optional="true"/>
<item name="Color" type="char_string" length="9" optional="true"/>
<item name="Size" type="DimensionStruct" optional="true"/>
</struct>
<struct name="BrandingInformationStruct">
<cluster code="0x050a"/>
<item name="ProviderName" type="char_string" length="256" />
<item name="Background" type="StyleInformationStruct" optional="true"/>
<item name="Logo" type="StyleInformationStruct" optional="true"/>
<item name="ProgressBar" type="StyleInformationStruct" optional="true"/>
<item name="Splash" type="StyleInformationStruct" optional="true"/>
<item name="WaterMark" type="StyleInformationStruct" optional="true"/>
</struct>
<enum name="ParameterEnum" type="enum8">
<cluster code="0x050a"/>
<item name="Actor" value="0x00"/>
<item name="Channel" value="0x01"/>
<item name="Character" value="0x02"/>
<item name="Director" value="0x03"/>
<item name="Event" value="0x04"/>
<item name="Franchise" value="0x05"/>
<item name="Genre" value="0x06"/>
<item name="League" value="0x07"/>
<item name="Popularity" value="0x08"/>
<item name="Provider" value="0x09"/>
<item name="Sport" value="0x0A"/>
<item name="SportsTeam" value="0x00B"/>
<item name="Type" value="0x0C"/>
<item name="Video" value="0x0D"/>
<item name="Season" value="0x0E"/>
<item name="Episode" value="0x0F"/>
<item name="Any" value="0x10"/>
</enum>
<enum name="StatusEnum" type="enum8">
<cluster code="0x050a"/>
<item name="Success" value="0x00"/>
<item name="URLNotAvailable" value="0x01"/>
<item name="AuthFailed" value="0x02"/>
<item name="TextTrackNotAvailable" value="0x03"/>
<item name="AudioTrackNotAvailable" value="0x04"/>
</enum>
<struct name="ParameterStruct">
<cluster code="0x050a"/>
<item name="Type" type="ParameterEnum"/>
<item name="Value" type="char_string" length="1024" />
<item name="ExternalIDList" type="AdditionalInfoStruct" array="true" optional="true"/>
</struct>
<struct name="PlaybackPreferencesStruct">
<cluster code="0x050a"/>
<item name="PlaybackPosition" type="int64u"/>
<item name="TextTrack" type="TrackPreferenceStruct"/>
<item name="AudioTracks" type="TrackPreferenceStruct" array="true" optional="true"/>
</struct>
<struct name="TrackPreferenceStruct">
<cluster code="0x050a"/>
<item name="LanguageCode" type="char_string" length="32" optional="false"/>
<item name="Characteristics" type="CharacteristicEnum" array="true" optional="true"/>
<item name="AudioOutputIndex" type="int8u"/>
</struct>
<enum name="CharacteristicEnum" type="enum8">
<cluster code="0x050a"/>
<item value="0x00" name="ForcedSubtitles"/>
<item value="0x01" name="DescribesVideo" />
<item value="0x02" name="EasyToRead"/>
<item value="0x03" name="FrameBased"/>
<item value="0x04" name="MainProgram"/>
<item value="0x05" name="OriginalContent"/>
<item value="0x06" name="VoiceOverTranslation"/>
<item value="0x07" name="Caption"/>
<item value="0x08" name="Subtitle"/>
<item value="0x09" name="Alternate"/>
<item value="0x0A" name="Supplementary"/>
<item value="0x0B" name="Commentary"/>
<item value="0x0C" name="DubbedTranslation"/>
<item value="0x0D" name="Description"/>
<item value="0x0E" name="Metadata"/>
<item value="0x0F" name="EnhancedAudioIntelligibility"/>
<item value="0x10" name="Emergency"/>
<item value="0x11" name="Karaoke"/>
</enum>
<bitmap name="SupportedProtocolsBitmap" type="bitmap32">
<cluster code="0x050a"/>
<field name="DASH" mask="0x1"/>
<field name="HLS" mask="0x2"/>
</bitmap>
<bitmap name="Feature" type="bitmap32">
<cluster code="0x050a"/>
<field name="ContentSearch" mask="0x01"/>
<field name="URLPlayback" mask="0x02"/>
<field name="AdvancedSeek" mask="0x04"/>
<field name="TextTracks" mask="0x08"/>
<field name="AudioTracks" mask="0x10"/>
</bitmap>
</configurator>