libcamera/test/v4l2_videodevice/stream_on_off.cpp
Laurent Pinchart 46011623bc libcamera: v4l2_videodevice: Rename exportBuffers() to allocateBuffers()
To prepare for the rework of buffer allocation that will differentiate
export and allocation, rename exportBuffers() to allocateBuffers().

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2020-03-18 19:15:18 +02:00

36 lines
654 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* libcamera V4L2 API tests
*/
#include "v4l2_videodevice_test.h"
class StreamOnStreamOffTest : public V4L2VideoDeviceTest
{
public:
StreamOnStreamOffTest()
: V4L2VideoDeviceTest("vimc", "Raw Capture 0") {}
protected:
int run()
{
const unsigned int bufferCount = 8;
int ret = capture_->allocateBuffers(bufferCount, &buffers_);
if (ret < 0)
return TestFail;
ret = capture_->streamOn();
if (ret)
return TestFail;
ret = capture_->streamOff();
if (ret)
return TestFail;
return TestPass;
}
};
TEST_REGISTER(StreamOnStreamOffTest);