diff --git a/CHANGELOG.md b/CHANGELOG.md index e15f5a536..87ff36e9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,17 @@ 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.10.2](https://github.com/rdkcentral/entservices-inputoutput/compare/1.10.1...1.10.2) + +- RDKEMW-12459: ARC - SAD is not updating as expected. [`#358`](https://github.com/rdkcentral/entservices-inputoutput/pull/358) +- Merge tag '1.10.1' into develop [`168ed58`](https://github.com/rdkcentral/entservices-inputoutput/commit/168ed5828d53b3a411026b65cc53b866575ca31a) + #### [1.10.1](https://github.com/rdkcentral/entservices-inputoutput/compare/1.10.0...1.10.1) +> 8 January 2026 + - RDKEMW-11606: Recipe to use entservices-avoutput for all RDKE platfroms [`#346`](https://github.com/rdkcentral/entservices-inputoutput/pull/346) +- 1.10.1 release changelog updates [`26c6923`](https://github.com/rdkcentral/entservices-inputoutput/commit/26c6923ead66fcc7189b968e9b64c4c292a0cb2f) - Merge tag '1.10.0' into develop [`436bd0b`](https://github.com/rdkcentral/entservices-inputoutput/commit/436bd0bbe674b4932b1663a854e9cd415fef495b) #### [1.10.0](https://github.com/rdkcentral/entservices-inputoutput/compare/1.9.2...1.10.0) diff --git a/HdmiCecSink/HdmiCecSink.h b/HdmiCecSink/HdmiCecSink.h index 4dd015bbc..2f6ad977a 100644 --- a/HdmiCecSink/HdmiCecSink.h +++ b/HdmiCecSink/HdmiCecSink.h @@ -194,10 +194,11 @@ namespace WPEFramework { Exchange::JHdmiCecSink::Event::SetSystemAudioModeEvent(_parent, audioMode); } - void ShortAudiodescriptorEvent(const string& jsonresponse) override + void ShortAudiodescriptorEvent(const string& shortAudioDescriptor) override { LOGINFO("ShortAudiodescriptorEvent"); - Exchange::JHdmiCecSink::Event::ShortAudiodescriptorEvent(_parent, jsonresponse); + LOGINFO("ShortAudiodescriptor: %s", shortAudioDescriptor.c_str()); + Exchange::JHdmiCecSink::Event::ShortAudiodescriptorEvent(_parent, shortAudioDescriptor); } void StandbyMessageReceived(const int logicalAddress) override