Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33d5f666 authored by Yuriy Romanenko's avatar Yuriy Romanenko
Browse files

Common: Added CameraMetadata -> libexif converter

A fully-ported version of the ExifUtils class from
ChromeOS (see [chromeos]/src/platform/arc-camera/common/exif_utils.cc)

 * Made into an interface to remove libexif dependencies
   from header file
 * Rewrote ChromeOS dependencies
 * Minor fixes

Change-Id: I2e93fa3e08e6b82b26641cc736eeb1c61b04a2c0
parent 8ed63de9
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -7,7 +7,9 @@ cc_library_static {
        "CameraMetadata.cpp",
        "CameraParameters.cpp",
        "VendorTagDescriptor.cpp",
        "HandleImporter.cpp"],
        "HandleImporter.cpp",
        "Exif.cpp"
    ],
    cflags: [
        "-Werror",
        "-Wextra",
@@ -17,7 +19,9 @@ cc_library_static {
        "liblog",
        "libhardware",
        "libcamera_metadata",
        "android.hardware.graphics.mapper@2.0"],
        "android.hardware.graphics.mapper@2.0",
        "libexif",
    ],
    include_dirs: ["system/media/private/camera/include"],
    export_include_dirs : ["include"]
}