summaryrefslogtreecommitdiff
path: root/src/android/hal_framebuffer.h
blob: dc96a7e193da41b2c5bd47203931a8195cd6079b (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
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2022, Google Inc.
 *
 * hal_framebuffer.h - HAL Frame Buffer Handling
 */

#pragma once

#include "libcamera/internal/framebuffer.h"

#include <hardware/camera3.h>

class HALFrameBuffer final : public libcamera::FrameBuffer
{
public:
	HALFrameBuffer(std::unique_ptr<Private> d,
		       buffer_handle_t handle);
	HALFrameBuffer(const std::vector<Plane> &planes,
		       buffer_handle_t handle);

	buffer_handle_t handle() const { return handle_; }

private:
	buffer_handle_t handle_;
};
='n37' href='#n37'>37 38 39 40 41 42 43 44 45 46 47 48
#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2020, Google Inc.
#
# Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
#
# ipa-gen-key.py - Generate the IPA module signing public key

import string
import subprocess
import sys


def main(argv):
    if len(argv) != 4:
        print('Usage: %s priv-key template output' % argv[0])
        return 1

    priv_key = argv[1]
    template = argv[2]
    output = argv[3]

    try:
        ret = subprocess.run(['openssl', 'rsa', '-pubout', '-in', priv_key,
                              '-outform', 'DER'],
                             stdout=subprocess.PIPE)
    except FileNotFoundError:
        print('Please install openssl to sign IPA modules')
        return 1

    ipa_key = ['0x%02x' % c for c in ret.stdout]
    ipa_key = [', '.join(ipa_key[bound:bound + 8]) for bound in range(0, len(ipa_key), 8)]
    ipa_key = ',\n\t'.join(ipa_key)
    data = {'ipa_key': ipa_key}

    template = open(template, 'rb').read()
    template = template.decode('utf-8')
    template = string.Template(template)

    f = open(output, 'wb')
    f.write(template.substitute(data).encode('utf-8'))
    f.close()

    return 0


if __name__ == '__main__':
    sys.exit(main(sys.argv))