/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2020, Collabora Ltd. * Author: Nicolas Dufresne * * gstlibcameraprovider.h - GStreamer Device Provider */ #ifndef __GST_LIBCAMERA_PROVIDER_H__ #define __GST_LIBCAMERA_PROVIDER_H__ #include G_BEGIN_DECLS #define GST_TYPE_LIBCAMERA_PROVIDER gst_libcamera_provider_get_type() G_DECLARE_FINAL_TYPE(GstLibcameraProvider, gst_libcamera_provider, GST_LIBCAMERA, PROVIDER, GstDeviceProvider) G_END_DECLS #endif /* __GST_LIBCAMERA_PROVIDER_H__ */ libcamera/libcamera.git' href='/libcamera/libcamera.git/'>libcamera/libcamera.git
libcamera official repositorygit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
blob: 4e03def9e78edf93100208d8585ba1d9c99da9b9 (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
37
38
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2018, Google Inc.
 *
 * libcamera test base class
 */

#include <stdlib.h>

#include "test.h"

Test::Test()
{
}

Test::~Test()
{
}

void Test::setArgs([[maybe_unused]] int argc, char *argv[])
{
	self_ = argv[0];
}

int Test::execute()
{
	int ret;

	ret = init();
	if (ret)
		return ret;

	ret = run();

	cleanup();

	return ret;
}