Skip to content

Commit 46072ff

Browse files
committed
RDKEMW-9955 : Fix PQMode index issue in Advance PQParams Implementation
1 parent a62c593 commit 46072ff

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

AVOutput/AVOutputTV.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4422,7 +4422,7 @@ namespace Plugin {
44224422
}
44234423
else {
44244424
LOGINFO("setLocalParam for %s Successful, Value: %s\n", AVOUTPUT_SOURCE_PICTUREMODE_STRING_RFC_PARAM, mode.c_str());
4425-
int pqmodeindex = (int)getPictureModeIndex(mode);
4425+
int pqmodeindex = (int)convertPictureStringToIndexV2(std::string(mode));
44264426
SaveSourcePictureMode(ctx.videoSrcType, ctx.videoFormatType, pqmodeindex);
44274427
}
44284428

@@ -4623,7 +4623,7 @@ namespace Plugin {
46234623
}
46244624

46254625
// Save to internal config
4626-
int pqmodeIndex = static_cast<int>(getPictureModeIndex(param.value));
4626+
int pqmodeIndex = static_cast<int>(convertPictureStringToIndexV2(std::string(param.value)));
46274627
SaveSourcePictureMode(ctx.videoSrcType, ctx.videoFormatType, pqmodeIndex);
46284628
contextHandled = true;
46294629
}

AVOutput/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ All notable changes to this RDK Service will be documented in this file.
1313
* **Security** in case of vulnerabilities.
1414

1515
* Changes in CHANGELOG should be updated when commits are added to the main or release branches. There should be one CHANGELOG entry per JIRA Ticket. This is not enforced on sprint branches since there could be multiple changes for the same JIRA ticket during development.
16+
## [1.2.1] - 2025-11-01
17+
### Fixed
18+
- Fixed PQMOde index issue for Advance PQParams
19+
1620
## [1.2.0] - 2025-09-12
1721
### Added
1822
- Advance PQ Params

0 commit comments

Comments
 (0)