libcamera/test/v4l2_device/stream_on_off.cpp
Kieran Bingham 03fcc154eb libcamera: v4l2_device: Simplify exportBuffers()
exportBuffers() can only operate on an existing BufferPool allocation. The
pool identifies its size through its .count() method.

Passing a count in to the exportBuffers() call is redundant and can be
incorrect if the value is not the same as the BufferPool size.

Simplify the function and remove the unnecessary argument, correcting all uses
throughout the code base.

While we're here, remove the createBuffers() helper from the V4L2DeviceTest
which only served to obfuscate which pool the buffers were being allocated for.

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2019-02-13 15:50:09 +00:00

35 lines
562 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* libcamera V4L2 API tests
*/
#include "v4l2_device_test.h"
class StreamOnStreamOffTest : public V4L2DeviceTest
{
protected:
int run()
{
const unsigned int bufferCount = 8;
pool_.createBuffers(bufferCount);
int ret = dev_->exportBuffers(&pool_);
if (ret)
return TestFail;
ret = dev_->streamOn();
if (ret)
return TestFail;
ret = dev_->streamOff();
if (ret)
return TestFail;
return TestPass;
}
};
TEST_REGISTER(StreamOnStreamOffTest);