blob: 2eae42340c23783c840668137da9b3514f313abf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2020, Google Inc.
*
* rkisp1path.cpp - Rockchip ISP1 path helper
*/
#include "rkisp1_path.h"
#include "libcamera/internal/media_device.h"
#include "libcamera/internal/v4l2_subdevice.h"
#include "libcamera/internal/v4l2_videodevice.h"
namespace libcamera {
RkISP1Path::RkISP1Path(const char *name)
: resizer_(nullptr), video_(nullptr), name_(name)
{
}
RkISP1Path::~RkISP1Path()
{
delete video_;
delete resizer_;
}
bool RkISP1Path::init(MediaDevice *media)
{
std::string resizer = std::string("rkisp1_resizer_") + name_ + "path";
std::string video = std::string("rkisp1_") + name_ + "path";
resizer_ = V4L2Subdevice::fromEntityName(media, resizer);
if (resizer_->open() < 0)
return false;
video_ = V4L2VideoDevice::fromEntityName(media, video);
if (video_->open() < 0)
return false;
return true;
}
RkISP1MainPath::RkISP1MainPath()
: RkISP1Path("main")
{
}
RkISP1SelfPath::RkISP1SelfPath()
: RkISP1Path("self")
{
}
} /* namespace libcamera */
|