File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
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.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
+
19
23
## [ 2.0.6] - 2025-05-08
20
24
### Fixed
21
25
- Return correct enum member for the HDR modes
Original file line number Diff line number Diff line change @@ -6114,7 +6114,14 @@ void DisplaySettings::sendMsgThread()
6114
6114
if (isDisplayConnected (strVideoPort))
6115
6115
{
6116
6116
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
+ }
6118
6125
}
6119
6126
else
6120
6127
{
You can’t perform that action at this time.
0 commit comments