summaryrefslogtreecommitdiff
path: root/src/apps/common/dng_writer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/apps/common/dng_writer.cpp')
0 files changed, 0 insertions, 0 deletions
mera/jmondi/libcamera.git/plain/test/v4l2_videodevice/stream_on_off.cpp?h=isi/raw_sensor&id=25ae4ad89f5aa071bf371ef50f8b2d295d48bcab'>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
/* 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)