libcamera/src/ipa/raspberrypi/md_parser_rpi.hpp
Naushir Patuck 2f46dec949 ipa: raspberrypi: Rename the controller namespace from Rpi to RpiController
This avoids a namespace clash with the RPi namespace used by the ipa and
pipeline handlers, and cleans up the syntax slightly.

There are no functional changes in this commit.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-09-29 12:35:17 +01:00

32 lines
652 B
C++

/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2019, Raspberry Pi (Trading) Limited
*
* md_parser_rpi.hpp - Raspberry Pi metadata parser interface
*/
#pragma once
#include "md_parser.hpp"
namespace RPiController {
class MdParserRPi : public MdParser
{
public:
MdParserRPi();
Status Parse(void *data) override;
Status GetExposureLines(unsigned int &lines) override;
Status GetGainCode(unsigned int &gain_code) override;
private:
// This must be the same struct that is filled into the metadata buffer
// in the pipeline handler.
struct rpiMetadata
{
uint32_t exposure;
uint32_t gain;
};
rpiMetadata metadata;
};
}