libcamera: Use "..." instead of <...> consistently for internal headers

libcamera uses double quotes for #include directives for internal
headers. A few <...> have found their way in the code base over time.
Fix them.

While at it, move an Android header include to the right location.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2022-05-26 13:05:27 +03:00
parent 7a529a9e35
commit 5517ffbff6
3 changed files with 5 additions and 5 deletions

View file

@ -10,11 +10,11 @@
#include <stdlib.h> #include <stdlib.h>
#include <string> #include <string>
#include <hardware/camera3.h>
#include <libcamera/base/log.h> #include <libcamera/base/log.h>
#include <libcamera/internal/yaml_parser.h> #include "libcamera/internal/yaml_parser.h"
#include <hardware/camera3.h>
using namespace libcamera; using namespace libcamera;

View file

@ -23,7 +23,7 @@
#include <libcamera/ipa/rkisp1_ipa_interface.h> #include <libcamera/ipa/rkisp1_ipa_interface.h>
#include <libcamera/request.h> #include <libcamera/request.h>
#include <libcamera/internal/mapped_framebuffer.h> #include "libcamera/internal/mapped_framebuffer.h"
#include "algorithms/agc.h" #include "algorithms/agc.h"
#include "algorithms/algorithm.h" #include "algorithms/algorithm.h"

View file

@ -9,7 +9,7 @@
#include <string> #include <string>
#include <unistd.h> #include <unistd.h>
#include <libcamera/internal/yaml_parser.h> #include "libcamera/internal/yaml_parser.h"
#include "test.h" #include "test.h"