Skip to content

Commit

Permalink
Fix content launcher cluster to have real feature bitmap instead of i…
Browse files Browse the repository at this point in the history
…ndexes (#35881)
  • Loading branch information
lazarkov authored Oct 3, 2024
1 parent e5bf62f commit 4cd06b4
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5452,9 +5452,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down
12 changes: 6 additions & 6 deletions examples/placeholder/linux/apps/app1/config.matter
Original file line number Diff line number Diff line change
Expand Up @@ -7959,9 +7959,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -8112,9 +8112,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down
12 changes: 6 additions & 6 deletions examples/placeholder/linux/apps/app2/config.matter
Original file line number Diff line number Diff line change
Expand Up @@ -7872,9 +7872,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -8025,9 +8025,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down
6 changes: 3 additions & 3 deletions examples/tv-app/tv-common/tv-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -3115,9 +3115,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2534,9 +2534,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,12 @@ limitations under the License.
</bitmap>

<bitmap name="Feature" type="bitmap32">
<cluster code="0x050a"/>
<field name="ContentSearch" mask="0x1"/>
<field name="URLPlayback" mask="0x2"/>
<field name="AdvancedSeek" mask="0x3"/>
<field name="TextTracks" mask="0x4"/>
<field name="AudioTracks" mask="0x5"/>
</bitmap>
<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>
6 changes: 3 additions & 3 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -9027,9 +9027,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down
6 changes: 3 additions & 3 deletions src/controller/python/chip/clusters/Objects.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/darwin/Framework/CHIP/zap-generated/MTRBaseClusters.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4cd06b4

Please sign in to comment.