Skip to content

Commit 08c756d

Browse files
committed
correct NewWindowsSession return statement.
fixes #17
1 parent 5fb151a commit 08c756d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

input/ffmpeg/dshow.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func NewWindowsSession(b FFmpegBackend, cfg input.SessionConfig) (*execread.Sess
2828
args = append(args, b.InputArgs()...)
2929
args = append(args, "-f", "f64le", "-")
3030

31-
return execread.NewSession(args, false, cfg)
31+
return execread.NewSession(args, false, cfg), nil
3232
}
3333

3434
// DShow is the DirectShow input for FFmpeg on Windows.

0 commit comments

Comments
 (0)