summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/md_parser_rpi.hpp
blob: 1fa334f45bd1e587d90977c7de2d9f9ca265f4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* 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 RPi {

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;
};

}