mirror of
https://github.com/AlexxIT/go2rtc.git
synced 2025-09-27 04:36:12 +08:00

- Rename `device_freebsd.go` to `device_bsd.go` and `hardware_freebsd.go` to `hardware_bsd.go` to reflect broader BSD support (FreeBSD, NetBSD, OpenBSD, Dragonfly). - Update build tags in `device_bsd.go` and `hardware_bsd.go` to include FreeBSD, NetBSD, OpenBSD, and Dragonfly. - Rename `device_linux.go` to `device_unix.go` and `hardware_linux.go` to `hardware_unix.go` to generalize Unix support excluding Darwin-based systems and BSDs. - Add specific build tags to `device_darwin.go`, `device_unix.go`, `hardware_darwin.go`, and `hardware_unix.go` to correctly target their respective operating systems. - Ensure Windows-specific files (`device_windows.go` and `hardware_windows.go`) are correctly tagged for building on Windows.
40 lines
879 B
Go
40 lines
879 B
Go
//go:build darwin || ios
|
|
|
|
package hardware
|
|
|
|
import (
|
|
"github.com/AlexxIT/go2rtc/internal/api"
|
|
)
|
|
|
|
const ProbeVideoToolboxH264 = "-f lavfi -i testsrc2=size=svga -t 1 -c h264_videotoolbox -f null -"
|
|
const ProbeVideoToolboxH265 = "-f lavfi -i testsrc2=size=svga -t 1 -c hevc_videotoolbox -f null -"
|
|
|
|
func ProbeAll(bin string) []*api.Source {
|
|
return []*api.Source{
|
|
{
|
|
Name: runToString(bin, ProbeVideoToolboxH264),
|
|
URL: "ffmpeg:...#video=h264#hardware=" + EngineVideoToolbox,
|
|
},
|
|
{
|
|
Name: runToString(bin, ProbeVideoToolboxH265),
|
|
URL: "ffmpeg:...#video=h265#hardware=" + EngineVideoToolbox,
|
|
},
|
|
}
|
|
}
|
|
|
|
func ProbeHardware(bin, name string) string {
|
|
switch name {
|
|
case "h264":
|
|
if run(bin, ProbeVideoToolboxH264) {
|
|
return EngineVideoToolbox
|
|
}
|
|
|
|
case "h265":
|
|
if run(bin, ProbeVideoToolboxH265) {
|
|
return EngineVideoToolbox
|
|
}
|
|
}
|
|
|
|
return EngineSoftware
|
|
}
|