summaryrefslogtreecommitdiff
path: root/test/media_device/media_device_test.h
blob: a88de56c50233c7e6c6d738dd34db420a2801af3 (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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * media_device_test.h - libcamera media device test base class
 */
#ifndef __LIBCAMERA_MEDIADEVICE_TEST_H__
#define __LIBCAMERA_MEDIADEVICE_TEST_H__

#include <memory>

#include "libcamera/internal/device_enumerator.h"
#include "libcamera/internal/media_device.h"

#include "test.h"

class MediaDeviceTest : public Test
{
public:
	MediaDeviceTest()
		: media_(nullptr), enumerator_(nullptr) {}

protected:
	int init();

	std::shared_ptr<libcamera::MediaDevice> media_;

private:
	std::unique_ptr<libcamera::DeviceEnumerator> enumerator_;
};

#endif /* __LIBCAMERA_MEDIADEVICE_TEST_H__ */