ipa: raspberrypi: AWB: Remove unused code

Some more code from pre-libcamera versions is removed. There is no
functional change.

Signed-off-by: David Plowman <david.plowman@raspberrypi.com>
Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
David Plowman 2021-02-25 17:01:40 +00:00 committed by Kieran Bingham
parent f8a70a8a74
commit b8bd37c6af
2 changed files with 2 additions and 9 deletions

View file

@ -21,8 +21,6 @@ LOG_DEFINE_CATEGORY(RPiAwb)
#define AWB_STATS_SIZE_X DEFAULT_AWB_REGIONS_X
#define AWB_STATS_SIZE_Y DEFAULT_AWB_REGIONS_Y
const double Awb::RGB::INVALID = -1.0;
// todo - the locking in this algorithm needs some tidying up as has been done
// elsewhere (ALSC and AGC).
@ -340,7 +338,7 @@ static void generate_stats(std::vector<Awb::RGB> &zones,
double min_G)
{
for (int i = 0; i < AWB_STATS_SIZE_X * AWB_STATS_SIZE_Y; i++) {
Awb::RGB zone; // this is "invalid", unless R gets overwritten later
Awb::RGB zone;
double counted = stats[i].counted;
if (counted >= min_pixels) {
zone.G = stats[i].g_sum / counted;