src: android: Rectify internal header's #include path

libcamera internal headers are not installed system-wide. Hence, any
inclusion of internal headers should follow the #include directive
form:
	#include "libcamera/internal/header.h"

This was not the case for a few of the class in android HAL. Fix them.

Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Hirokazu Honda <hiroh@chromium.org>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
Umang Jain 2021-04-30 10:09:56 +05:30 committed by Jacopo Mondi
parent 093b71b24a
commit 08f7469617
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@
#include <libcamera/geometry.h>
#include <libcamera/pixel_format.h>
#include <libcamera/internal/buffer.h>
#include "libcamera/internal/buffer.h"
class CameraDevice;
class CameraMetadata;

View file

@ -7,7 +7,7 @@
#include "../camera_buffer.h"
#include <libcamera/internal/buffer.h>
#include "libcamera/internal/buffer.h"
#include "libcamera/internal/log.h"
using namespace libcamera;

View file

@ -10,7 +10,7 @@
#include <libcamera/buffer.h>
#include <libcamera/stream.h>
#include <libcamera/internal/buffer.h>
#include "libcamera/internal/buffer.h"
#include "camera_buffer.h"