blob: 52f54f0080569d4e9577e87427e7f0afc0cb2d31 (
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 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;
};
}
|