summaryrefslogtreecommitdiff
path: root/include/android/system
AgeCommit message (Expand)Author
2019-08-12include: android: Add SPDX tagsJacopo Mondi
2019-08-12include: android: Add Android headers from CrosJacopo Mondi
f='#n7'>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
/* 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"

using namespace libcamera;

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

protected:
	int init();

	std::shared_ptr<MediaDevice> media_;

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

#endif /* __LIBCAMERA_MEDIADEVICE_TEST_H__ */