Add v16.8.0

This commit is contained in:
Jan Stabenow
2022-06-03 17:21:52 +02:00
parent c8bebd95ef
commit 9746248c10
431 changed files with 14782 additions and 13944 deletions

View File

@@ -17,10 +17,7 @@ func DevicesV4L() ([]HWDevice, error) {
cmd := exec.Command("v4l2-ctl", "--list-devices")
cmd.Env = []string{}
cmd.Stdout = buf
err := cmd.Run()
if err != nil {
return devices, err
}
cmd.Run()
devices = parseV4LDevices(buf)