mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-26 01:55:51 +03:00
android: Add camera metadata library
Import the Android camera metadata library from the ChromiumOS build system. The camera metadata library has been copied from https://chromium.googlesource.com/chromiumos/platform2 at revision 9e65ddd2c496e712f005ada9715decd2ff8e4a03 The original path in the Cros platform2/ repository is: camera/android/libcamera_metadata/src Create a new build target for the camera metadata library to create a static library to link against libcamera. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
190bebef08
commit
552b5d16d7
4 changed files with 4023 additions and 0 deletions
7
src/android/meson.build
Normal file
7
src/android/meson.build
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
android_camera_metadata_sources = files([
|
||||||
|
'metadata/camera_metadata.c',
|
||||||
|
])
|
||||||
|
|
||||||
|
android_camera_metadata = static_library('camera_metadata',
|
||||||
|
android_camera_metadata_sources,
|
||||||
|
include_directories : android_includes)
|
1204
src/android/metadata/camera_metadata.c
Normal file
1204
src/android/metadata/camera_metadata.c
Normal file
File diff suppressed because it is too large
Load diff
2811
src/android/metadata/camera_metadata_tag_info.c
Normal file
2811
src/android/metadata/camera_metadata_tag_info.c
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,3 +1,4 @@
|
||||||
|
subdir('android')
|
||||||
subdir('libcamera')
|
subdir('libcamera')
|
||||||
subdir('ipa')
|
subdir('ipa')
|
||||||
subdir('cam')
|
subdir('cam')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue