Fix support linux + riscv64 #1639

This commit is contained in:
Alex X
2025-03-13 15:33:23 +03:00
parent 60250a32c2
commit 47f32a5f55
2 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
//go:build !linux
//go:build !(linux && (386 || arm || mipsle || amd64 || arm64))
package v4l2

View File

@@ -1,3 +1,5 @@
//go:build linux && (386 || arm || mipsle || amd64 || arm64)
package v4l2
import (