blob: 994a12870b66ed6d30f105597933261d471e16dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Test video source
*
* Copyright (C) 2018 Paul Elder
*
* Contact: Paul Elder <paul.elder@ideasonboard.com>
*/
#ifndef __TEST_VIDEO_SOURCE_H__
#define __TEST_VIDEO_SOURCE_H__
#include "video-source.h"
struct events;
struct video_source;
struct video_source *test_video_source_create(void);
void test_video_source_init(struct video_source *src, struct events *events);
#endif /* __TEST_VIDEO_SOURCE_H__ */
|