mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-16 08:55:06 +03:00
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>
32 lines
652 B
C++
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;
|
|
};
|
|
|
|
}
|