ipa: raspberrypi: Code refactoring to match style guidelines

Refactor all the source files in src/ipa/raspberrypi/ to match the recommended
formatting guidelines for the libcamera project. The vast majority of changes
in this commit comprise of switching from snake_case to CamelCase, and starting
class member functions with a lower case character.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Naushir Patuck 2022-07-27 09:55:17 +01:00 committed by Laurent Pinchart
parent b4a3eb6b98
commit 177df04d2b
63 changed files with 2093 additions and 2161 deletions

View file

@ -26,38 +26,38 @@ BlackLevel::BlackLevel(Controller *controller)
{
}
char const *BlackLevel::Name() const
char const *BlackLevel::name() const
{
return NAME;
}
void BlackLevel::Read(boost::property_tree::ptree const &params)
void BlackLevel::read(boost::property_tree::ptree const &params)
{
uint16_t black_level = params.get<uint16_t>(
uint16_t blackLevel = params.get<uint16_t>(
"black_level", 4096); // 64 in 10 bits scaled to 16 bits
black_level_r_ = params.get<uint16_t>("black_level_r", black_level);
black_level_g_ = params.get<uint16_t>("black_level_g", black_level);
black_level_b_ = params.get<uint16_t>("black_level_b", black_level);
blackLevelR_ = params.get<uint16_t>("black_level_r", blackLevel);
blackLevelG_ = params.get<uint16_t>("black_level_g", blackLevel);
blackLevelB_ = params.get<uint16_t>("black_level_b", blackLevel);
LOG(RPiBlackLevel, Debug)
<< " Read black levels red " << black_level_r_
<< " green " << black_level_g_
<< " blue " << black_level_b_;
<< " Read black levels red " << blackLevelR_
<< " green " << blackLevelG_
<< " blue " << blackLevelB_;
}
void BlackLevel::Prepare(Metadata *image_metadata)
void BlackLevel::prepare(Metadata *imageMetadata)
{
// Possibly we should think about doing this in a switch_mode or
// Possibly we should think about doing this in a switchMode or
// something?
struct BlackLevelStatus status;
status.black_level_r = black_level_r_;
status.black_level_g = black_level_g_;
status.black_level_b = black_level_b_;
image_metadata->Set("black_level.status", status);
status.blackLevelR = blackLevelR_;
status.blackLevelG = blackLevelG_;
status.blackLevelB = blackLevelB_;
imageMetadata->set("black_level.status", status);
}
// Register algorithm with the system.
static Algorithm *Create(Controller *controller)
static Algorithm *create(Controller *controller)
{
return new BlackLevel(controller);
}
static RegisterAlgorithm reg(NAME, &Create);
static RegisterAlgorithm reg(NAME, &create);