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:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user