Skip to content

Commit

Permalink
gh #277 updated test_l3_dsVideoPort.c
Browse files Browse the repository at this point in the history
  • Loading branch information
KarthikeyanR470 committed Dec 20, 2024
1 parent d9a3cf6 commit 69917e2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/test_l3_dsVideoPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,25 @@ void dsVideoPort_SetAllmEnabled()
UT_LOG_INFO("OUT %s ",__FUNCTION__);
}

void dsVideoPort_GetAllmEnabled()
{
dsError_t status = dsERR_NONE;
bool AllmMode = false;

UT_LOG_INFO("IN %s gTestGroup:%d ",__FUNCTION__,UT_TESTS_L3);

dsVideoPort_getHandle();

UT_LOG_INFO("Calling dsGetAllmEnabled(IN:Handle:[0x%0X],OUT:ALLM_Status:[]) ", gHandle);
status = dsGetAllmEnabled(gHandle, &AllmMode);
UT_LOG_INFO("Result dsGetAllmEnabled(IN:Handle:[0x%0X],OUT:ALLM_Status:[%s]) ,dsError_t=[%s]",
gHandle, UT_Control_GetMapString(boolMappingTable, AllmMode),
UT_Control_GetMapString(dsErrorMappingTable, status));
DS_ASSERT(status == dsERR_NONE);
UT_LOG_INFO("OUT %s ",__FUNCTION__);

}


void dsVideoPort_IsOutputHDR()
{
Expand Down

0 comments on commit 69917e2

Please sign in to comment.