Skip to content

Commit ca6c35c

Browse files
authored
Merge pull request #168 from rdkcentral/develop
Rebased develop
2 parents 92052a1 + 8083548 commit ca6c35c

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

AVOutput/AVOutputTVHelper.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -321,13 +321,13 @@ namespace Plugin {
321321
{
322322
tvDimmingMode_t index = tvDimmingMode_MAX;
323323

324-
if(mode.compare("local") == 0 ) {
324+
if(mode.compare("Local") == 0 ) {
325325
index=tvDimmingMode_Local;
326326
}
327-
else if(mode.compare("fixed") == 0 ) {
327+
else if(mode.compare("Fixed") == 0 ) {
328328
index=tvDimmingMode_Fixed;
329329
}
330-
else if(mode.compare("global") == 0 ) {
330+
else if(mode.compare("Global") == 0 ) {
331331
index=tvDimmingMode_Global;
332332
}
333333
else {
@@ -1514,13 +1514,13 @@ namespace Plugin {
15141514
return 0;
15151515
}
15161516
else if( forParam.compare("DimmingMode") == 0 ) {
1517-
if (strncmp(param.value, "fixed", strlen(param.value))==0) {
1517+
if (strncmp(param.value, "Fixed", strlen(param.value))==0) {
15181518
value=tvDimmingMode_Fixed;
15191519
}
1520-
else if (strncmp(param.value, "local", strlen(param.value))==0) {
1520+
else if (strncmp(param.value, "Local", strlen(param.value))==0) {
15211521
value=tvDimmingMode_Local;
15221522
}
1523-
else if (strncmp(param.value, "global", strlen(param.value))==0) {
1523+
else if (strncmp(param.value, "Global", strlen(param.value))==0) {
15241524
value=tvDimmingMode_Global;
15251525
}
15261526
return 0;
@@ -1683,9 +1683,9 @@ namespace Plugin {
16831683
void AVOutputTV::getDimmingModeStringFromEnum(int value, std::string &toStore)
16841684
{
16851685
const char *color_temp_string[] = {
1686-
[tvDimmingMode_Fixed] = "fixed",
1687-
[tvDimmingMode_Local] = "local",
1688-
[tvDimmingMode_Global] = "global",
1686+
[tvDimmingMode_Fixed] = "Fixed",
1687+
[tvDimmingMode_Local] = "Local",
1688+
[tvDimmingMode_Global] = "Global",
16891689
};
16901690
toStore.clear();
16911691
toStore+=color_temp_string[value];

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.3.1](https://github.com/rdkcentral/entservices-inputoutput/compare/1.3.0...1.3.1)
8+
9+
- RDKEMW-5512: Implement a fix for the SaveTVDimmingMode failure [`#157`](https://github.com/rdkcentral/entservices-inputoutput/pull/157)
10+
- RDKEMW-1015 - Update gtest [`#155`](https://github.com/rdkcentral/entservices-inputoutput/pull/155)
11+
- Merge tag '1.3.0' into develop [`2499e0b`](https://github.com/rdkcentral/entservices-inputoutput/commit/2499e0b71c2fbb9e9a303a342fbc4965da5b52c9)
12+
713
#### [1.3.0](https://github.com/rdkcentral/entservices-inputoutput/compare/1.2.0...1.3.0)
814

15+
> 20 June 2025
16+
917
- Feature/rdkemw 1015 comrpc [`#129`](https://github.com/rdkcentral/entservices-inputoutput/pull/129)
1018
- RDK-57440: Causing config issue for higher versions of cmake [`#146`](https://github.com/rdkcentral/entservices-inputoutput/pull/146)
19+
- RDK-57440 - Changelog updates for 1.3.0 [`cc4f369`](https://github.com/rdkcentral/entservices-inputoutput/commit/cc4f36979ba5a25a4ae96005b7e2c6dce1523044)
1120
- Merge tag '1.2.0' into develop [`7b1dccc`](https://github.com/rdkcentral/entservices-inputoutput/commit/7b1dccc6d7bbba3fdf649c900ad15996e6424a27)
1221

1322
#### [1.2.0](https://github.com/rdkcentral/entservices-inputoutput/compare/1.1.1...1.2.0)

0 commit comments

Comments
 (0)