Skip to content
Merged
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,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)
Expand Down
5 changes: 3 additions & 2 deletions HdmiCecSink/HdmiCecSink.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading