diff --git a/CHANGELOG.md b/CHANGELOG.md index e412d210..1a91dff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/rpc/srv/dsVideoPort.c b/rpc/srv/dsVideoPort.c index 10e33788..9462dc25 100644 --- a/rpc/srv/dsVideoPort.c +++ b/rpc/srv/dsVideoPort.c @@ -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)); }