Skip to content

Commit ee8204f

Browse files
authored
Merge pull request rdkcentral#6258 from Srigayathry/main_AVI_ALLM
RDK-56367, RDK-57841: ALLM AVI info frames
2 parents 0777226 + 6dca429 commit ee8204f

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
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.7] - 2025-06-02
20+
### Added
21+
- Set AVI content type & scan info frames during the ALLM Game mode and reset on video mode
22+
1923
## [2.0.6] - 2025-05-08
2024
### Fixed
2125
- Return correct enum member for the HDR modes

DisplaySettings/DisplaySettings.cpp

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6114,7 +6114,14 @@ void DisplaySettings::sendMsgThread()
61146114
if (isDisplayConnected(strVideoPort))
61156115
{
61166116
bool enable = (newState == "GAME") ? true : false;
6117-
vPort.setAllmEnabled(enable);
6117+
vPort.getDisplay().setAllmEnabled(enable);
6118+
if(enable){ // Game mode
6119+
vPort.getDisplay().setAVIContentType(dsAVICONTENT_TYPE_GAME);
6120+
vPort.getDisplay().setAVIScanInformation(dsAVI_SCAN_TYPE_UNDERSCAN);
6121+
}else{ // video mode
6122+
vPort.getDisplay().setAVIContentType(dsAVICONTENT_TYPE_NOT_SIGNALLED);
6123+
vPort.getDisplay().setAVIScanInformation(dsAVI_SCAN_TYPE_NO_DATA);
6124+
}
61186125
}
61196126
else
61206127
{

0 commit comments

Comments
 (0)