mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-19 10:25:05 +03:00
ipa: raspberrypi: Drop CameraHelper::GetOrientation()
The camera sensor orientation is now handled by the pipeline handler. Drop hardcoded per-sensor orientations from the IPA. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
This commit is contained in:
parent
44aa793056
commit
c0b0b7205c
5 changed files with 0 additions and 33 deletions
|
@ -49,7 +49,6 @@ public:
|
|||
double Gain(uint32_t gain_code) const override;
|
||||
unsigned int MistrustFramesModeSwitch() const override;
|
||||
bool SensorEmbeddedDataPresent() const override;
|
||||
CamTransform GetOrientation() const override;
|
||||
};
|
||||
|
||||
CamHelperImx219::CamHelperImx219()
|
||||
|
@ -86,12 +85,6 @@ bool CamHelperImx219::SensorEmbeddedDataPresent() const
|
|||
return ENABLE_EMBEDDED_DATA;
|
||||
}
|
||||
|
||||
CamTransform CamHelperImx219::GetOrientation() const
|
||||
{
|
||||
/* Camera is "upside down" on this board. */
|
||||
return CamTransform_HFLIP | CamTransform_VFLIP;
|
||||
}
|
||||
|
||||
static CamHelper *Create()
|
||||
{
|
||||
return new CamHelperImx219();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue