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
4 changes: 2 additions & 2 deletions AVOutput/AVOutputTV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4422,7 +4422,7 @@ namespace Plugin {
}
else {
LOGINFO("setLocalParam for %s Successful, Value: %s\n", AVOUTPUT_SOURCE_PICTUREMODE_STRING_RFC_PARAM, mode.c_str());
int pqmodeindex = (int)getPictureModeIndex(mode);
int pqmodeindex = (int)convertPictureStringToIndexV2(std::string(mode));
SaveSourcePictureMode(ctx.videoSrcType, ctx.videoFormatType, pqmodeindex);
}

Expand Down Expand Up @@ -4623,7 +4623,7 @@ namespace Plugin {
}

// Save to internal config
int pqmodeIndex = static_cast<int>(getPictureModeIndex(param.value));
int pqmodeIndex = static_cast<int>(convertPictureStringToIndexV2(std::string(param.value)));
SaveSourcePictureMode(ctx.videoSrcType, ctx.videoFormatType, pqmodeIndex);
contextHandled = true;
}
Expand Down
4 changes: 4 additions & 0 deletions AVOutput/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ All notable changes to this RDK Service will be documented in this file.
* **Security** in case of vulnerabilities.

* 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.
## [1.2.1] - 2025-11-01
### Fixed
- Fixed PQMOde index issue for Advance PQParams

## [1.2.0] - 2025-09-12
### Added
- Advance PQ Params
Expand Down