Commit adcc3cca authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Avoid V4L2 enum as they depend on header versions

This should fix the warning about 8 not being a valid control type.
parent cd86cb3d
......@@ -84,7 +84,7 @@ struct vlc_v4l2_ctrl
{
int fd;
uint32_t id;
enum v4l2_ctrl_type type;
uint8_t type;
char name[32];
int32_t default_value;
struct vlc_v4l2_ctrl *next;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment