From 64c17f73a08fd121c233e655d6ded9790c03dda5 Mon Sep 17 00:00:00 2001 From: Jacopo Mondi Date: Wed, 17 Feb 2021 16:04:34 +0100 Subject: android: Introduce CameraBuffer interface In order to provide support for different memory backends, move the MappedCamera3Buffer class definition outside of the CameraDevice class to its own file and rename it in CameraBuffer. The interface defined in camera_buffer.h will be implemented by different backends that will be placed in the src/android/mm subdirectory. Provide a first implementation for the 'generic android' backend which matches the existing one. Reviewed-by: Laurent Pinchart Signed-off-by: Jacopo Mondi --- src/android/meson.build | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/android/meson.build') diff --git a/src/android/meson.build b/src/android/meson.build index 9719c42b..7004d32d 100644 --- a/src/android/meson.build +++ b/src/android/meson.build @@ -52,6 +52,8 @@ android_hal_sources = files([ 'yuv/post_processor_yuv.cpp' ]) +subdir('mm') + android_camera_metadata_sources = files([ 'metadata/camera_metadata.c', ]) -- cgit v1.2.1