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>
37 lines
697 B
C++
37 lines
697 B
C++
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
/*
|
|
* Copyright (C) 2020, Raspberry Pi (Trading) Limited
|
|
*
|
|
* md_parser_rpi.cpp - Metadata parser for generic Raspberry Pi metadata
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "md_parser_rpi.hpp"
|
|
|
|
using namespace RPiController;
|
|
|
|
MdParserRPi::MdParserRPi()
|
|
{
|
|
}
|
|
|
|
MdParser::Status MdParserRPi::Parse(void *data)
|
|
{
|
|
if (buffer_size_bytes_ < sizeof(rpiMetadata))
|
|
return ERROR;
|
|
|
|
memcpy(&metadata, data, sizeof(rpiMetadata));
|
|
return OK;
|
|
}
|
|
|
|
MdParser::Status MdParserRPi::GetExposureLines(unsigned int &lines)
|
|
{
|
|
lines = metadata.exposure;
|
|
return OK;
|
|
}
|
|
|
|
MdParser::Status MdParserRPi::GetGainCode(unsigned int &gain_code)
|
|
{
|
|
gain_code = metadata.gain;
|
|
return OK;
|
|
}
|