summaryrefslogtreecommitdiff
path: root/internal/probe/probe.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-10 09:11:34 +0300
committerPaul Buetow <paul@buetow.org>2026-05-10 09:11:34 +0300
commit060de74e669fc8c7deed0c3f563581a3031d529c (patch)
treed070603979b4d27157dd6e011b8b4cdf51a67472 /internal/probe/probe.go
parent93366c7a8603a64b410521dd19d967c0cd4d7e84 (diff)
Add compile-time interface assertions for FFProber, FFmpegGenerator, FFRemuxer
Diffstat (limited to 'internal/probe/probe.go')
-rw-r--r--internal/probe/probe.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/probe/probe.go b/internal/probe/probe.go
index a3fce78..7fd6924 100644
--- a/internal/probe/probe.go
+++ b/internal/probe/probe.go
@@ -34,6 +34,8 @@ type FFProber struct {
waitDelay time.Duration
}
+var _ Prober = (*FFProber)(nil)
+
// NewFFProber creates a new FFProber with bounded retries and a process wait delay.
func NewFFProber() *FFProber {
return &FFProber{