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:
parent
093b71b24a
commit
08f7469617
3 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue