summaryrefslogtreecommitdiff
path: root/src/apps
ModeNameSize
d---------cam992logplain
d---------common523logplain
d---------ipa-verify75logplain
d---------lc-compliance225logplain
-rw-r--r--meson.build564logplain
d---------qcam690logplain
'n30' href='#n30'>30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2020, Google Inc.
 *
 * exif.h - EXIF tag creator using libexif
 */
#ifndef __ANDROID_JPEG_EXIF_H__
#define __ANDROID_JPEG_EXIF_H__

#include <chrono>
#include <string>
#include <time.h>

#include <libexif/exif-data.h>

#include <libcamera/geometry.h>
#include <libcamera/span.h>

class Exif
{
public:
	Exif();
	~Exif();

	enum Compression {
		None = 1,
		JPEG = 6,
	};

	enum Flash {
		/* bit 0 */
		Fired = 0x01,