summaryrefslogtreecommitdiff
path: root/src/libcamera/pipeline/rkisp1/rkisp1_path.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/pipeline/rkisp1/rkisp1_path.h')
-rw-r--r--src/libcamera/pipeline/rkisp1/rkisp1_path.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libcamera/pipeline/rkisp1/rkisp1_path.h b/src/libcamera/pipeline/rkisp1/rkisp1_path.h
index 377772ca..e2eb1be9 100644
--- a/src/libcamera/pipeline/rkisp1/rkisp1_path.h
+++ b/src/libcamera/pipeline/rkisp1/rkisp1_path.h
@@ -45,22 +45,24 @@ public:
return video_->exportBuffers(bufferCount, buffers);
}
+ int start();
+ void stop();
+
int queueBuffer(FrameBuffer *buffer) { return video_->queueBuffer(buffer); }
Signal<FrameBuffer *> &bufferReady() { return video_->bufferReady; }
- /* \todo Make video private. */
- V4L2VideoDevice *video_;
-
private:
static constexpr unsigned int RKISP1_BUFFER_COUNT = 4;
const char *name_;
+ bool running_;
const Span<const PixelFormat> formats_;
const Size minResolution_;
const Size maxResolution_;
V4L2Subdevice *resizer_;
+ V4L2VideoDevice *video_;
};
class RkISP1MainPath : public RkISP1Path