mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-19 18:35:07 +03:00
qcam: viewfinder: Move multi-planar check into viewfinder
The lack of support for multiplanar buffers comes from the viewfinder. Move the corresponding check from MainWindow. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
275fd5bd33
commit
b73192036d
3 changed files with 8 additions and 7 deletions
|
@ -524,14 +524,9 @@ void MainWindow::processCapture()
|
|||
queueRequest(buffer);
|
||||
}
|
||||
|
||||
int MainWindow::display(FrameBuffer *buffer)
|
||||
void MainWindow::display(FrameBuffer *buffer)
|
||||
{
|
||||
if (buffer->planes().size() != 1)
|
||||
return -EINVAL;
|
||||
|
||||
viewfinder_->display(buffer, &mappedBuffers_[buffer]);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void MainWindow::queueRequest(FrameBuffer *buffer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue