Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [1.0.38](https://github.com/rdkcentral/devicesettings/compare/1.0.37...1.0.38)

- RDKEMW-21885: write hdmi inprogress state [`#274`](https://github.com/rdkcentral/devicesettings/pull/274)
- Merge tag '1.0.37' into develop [`7a47bc2`](https://github.com/rdkcentral/devicesettings/commit/7a47bc2bfce0f9328411dd0c356ec8cc19b4bd05)

#### [1.0.37](https://github.com/rdkcentral/devicesettings/compare/1.0.36...1.0.37)

> 5 August 2026

- RDKEMW-22808,RDKEMW-22129,RDKEMW-22891: Audio muted FFV (#261) [`#271`](https://github.com/rdkcentral/devicesettings/pull/271)
- RDKDEV-1389 Add Device Settings Documentation [`#254`](https://github.com/rdkcentral/devicesettings/pull/254)
- 1.0.37 release change log updates [`4063b92`](https://github.com/rdkcentral/devicesettings/commit/4063b927c3daa7e29e2290b6f1b976838a18092e)
- Merge tag '1.0.36' into develop [`86ca9de`](https://github.com/rdkcentral/devicesettings/commit/86ca9de0d705c4fc919359d5679daf7e256b795d)

#### [1.0.36](https://github.com/rdkcentral/devicesettings/compare/1.0.36-hotfix.2N...1.0.36)
Expand Down
6 changes: 6 additions & 0 deletions rpc/srv/dsVideoPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -1502,6 +1502,12 @@ void _dsHdcpCallback (intptr_t handle, dsHdcpStatus_t status)
_dsSyncHdmiStatus(DS_HDMI_TAG_HDCPVERSION, dsHDCP_VERSION_1X);
}
}
else
{
INT_INFO("Hdmi sync HDCP Protocol inprogress new protocol status is : %d new protocol verision is : %d !!!!!!!! ..\r\n", _hdcpStatus ,dsHDCP_VERSION_1X);
_dsSyncHdmiStatus(DS_HDMI_TAG_HDCPSTATUS, _hdcpStatus);
_dsSyncHdmiStatus(DS_HDMI_TAG_HDCPVERSION, dsHDCP_VERSION_1X);
}

IARM_Bus_BroadcastEvent(IARM_BUS_DSMGR_NAME,(IARM_EventId_t)IARM_BUS_DSMGR_EVENT_HDCP_STATUS,(void *)&hdcp_eventData, sizeof(hdcp_eventData));
}
Expand Down
Loading