mirror of
https://github.com/andreili/camera-streamer.git
synced 2025-08-24 03:44:07 +02:00
10 lines
213 B
C
10 lines
213 B
C
#include "device/hw/v4l2.h"
|
|
#include "device/hw/device.h"
|
|
|
|
extern device_hw_t device_hw_v4l2;
|
|
|
|
device_t *device_v4l2_open(const char *name, const char *path)
|
|
{
|
|
return device_open(name, path, &device_hw_v4l2);
|
|
}
|