mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 15:29:45 +03:00
ipa: raspberrypi: Remove MdParserRPi
With the recent change to pass a ControlList to the IPA with exposure and gain values used for a frame, RPiController::MdParserRPi is not needed any more. Remove all traces of it. The derived CamHelper objects now pass nullptr values for the parser to the base CamHelper class when sensors do not use metadata. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Tested-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
cd07b604ba
commit
9d4431d621
6 changed files with 6 additions and 77 deletions
|
@ -19,8 +19,6 @@
|
|||
#include "cam_helper.hpp"
|
||||
#if ENABLE_EMBEDDED_DATA
|
||||
#include "md_parser.hpp"
|
||||
#else
|
||||
#include "md_parser_rpi.hpp"
|
||||
#endif
|
||||
|
||||
using namespace RPiController;
|
||||
|
@ -62,7 +60,7 @@ CamHelperImx219::CamHelperImx219()
|
|||
#if ENABLE_EMBEDDED_DATA
|
||||
: CamHelper(new MdParserImx219(), frameIntegrationDiff)
|
||||
#else
|
||||
: CamHelper(new MdParserRPi(), frameIntegrationDiff)
|
||||
: CamHelper(nullptr, frameIntegrationDiff)
|
||||
#endif
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue