File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
16
16
17
17
* For more details, refer to [ versioning] ( https://github.com/rdkcentral/rdkservices#versioning ) section under Main README.
18
18
19
+ ## [ 2.0.6] - 2025-05-08
20
+ ### Fixed
21
+ - Return correct enum member for the HDR modes
22
+
19
23
## [ 2.0.5] - 2025-02-07
20
24
### Fixed
21
25
- Fixed Assert failure
Original file line number Diff line number Diff line change @@ -6092,9 +6092,9 @@ void DisplaySettings::sendMsgThread()
6092
6092
else if (strcmp (strFormat," DV" )== 0 )
6093
6093
mode = dsHDRSTANDARD_DolbyVision;
6094
6094
else if (strcmp (strFormat," HLG" )== 0 )
6095
- mode = dsHDRSTANDARD_TechnicolorPrime ;
6095
+ mode = dsHDRSTANDARD_HLG ;
6096
6096
else if (strcmp (strFormat," TechnicolorPrime" )== 0 )
6097
- mode = dsHDRSTANDARD_NONE ;
6097
+ mode = dsHDRSTANDARD_TechnicolorPrime ;
6098
6098
else
6099
6099
mode = dsHDRSTANDARD_Invalid;
6100
6100
You can’t perform that action at this time.
0 commit comments