Skip to content

Commit

Permalink
Set isISYSCompression to false for IPU6 upstream
Browse files Browse the repository at this point in the history
Signed-off-by: Hongju Wang <[email protected]>
Signed-off-by: Hao Yao <[email protected]>
  • Loading branch information
hongjuwa authored and hao-yao committed Dec 4, 2024
1 parent 7527bcc commit 82b033e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/platformdata/CameraParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,8 @@ void CameraParser::handleSensor(CameraParser* profiles, const char* name, const
}
} else if (strcmp(name, "isISYSCompression") == 0) {
pCurrentCam->mISYSCompression = strcmp(atts[1], "true") == 0;
if (mStaticCfg->mMediaCfgId == IPU6_UPSTREAM_MEDIA_CFG)
pCurrentCam->mISYSCompression = false;
} else if (strcmp(name, "isPSACompression") == 0) {
pCurrentCam->mPSACompression = strcmp(atts[1], "true") == 0;
} else if (strcmp(name, "isOFSCompression") == 0) {
Expand Down

0 comments on commit 82b033e

Please sign in to comment.