index
:
libcamera/vivid.git
pobrn/rebase
vivid
libcamera pipeline handler for VIVID
git repository hosting on libcamera.org
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
ipa
/
ipa-sign-install.sh
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* camera_test.h - libcamera camera test base class
*/
#ifndef __LIBCAMERA_CAMERA_TEST_H__
#define __LIBCAMERA_CAMERA_TEST_H__
#include <libcamera/libcamera.h>
#include
"test.h"
using namespace
libcamera
;
class
CameraTest
:
public
Test
{
public
:
CameraTest
()
:
cm_
(
nullptr
) {}
protected
:
int
init
();
void
cleanup
();
CameraManager
*
cm_
;
std
::
shared_ptr
<
Camera
>
camera_
;
};
#endif
/* __LIBCAMERA_CAMERA_TEST_H__ */