Skip to content

Commit 04ce6da

Browse files
authored
Merge pull request rdkcentral#6231 from Srigayathry/main_RDK_56526_force_hdr
RDK-56526: setForceHDRMode - allow only subset of HDR modes
2 parents 13cb230 + 7d45452 commit 04ce6da

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

DisplaySettings/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
1616

1717
* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.
1818

19+
## [2.0.6] - 2025-05-08
20+
### Fixed
21+
- Return correct enum member for the HDR modes
22+
1923
## [2.0.5] - 2025-02-07
2024
### Fixed
2125
- Fixed Assert failure

DisplaySettings/DisplaySettings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6092,9 +6092,9 @@ void DisplaySettings::sendMsgThread()
60926092
else if(strcmp(strFormat,"DV")== 0)
60936093
mode = dsHDRSTANDARD_DolbyVision;
60946094
else if(strcmp(strFormat,"HLG")== 0)
6095-
mode = dsHDRSTANDARD_TechnicolorPrime;
6095+
mode = dsHDRSTANDARD_HLG;
60966096
else if(strcmp(strFormat,"TechnicolorPrime")== 0)
6097-
mode = dsHDRSTANDARD_NONE;
6097+
mode = dsHDRSTANDARD_TechnicolorPrime;
60986098
else
60996099
mode = dsHDRSTANDARD_Invalid;
61006100

0 commit comments

Comments
 (0)