Skip to content

Commit

Permalink
correct NewWindowsSession return statement.
Browse files Browse the repository at this point in the history
fixes #17
  • Loading branch information
noriah committed Apr 3, 2023
1 parent 5fb151a commit 08c756d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion input/ffmpeg/dshow.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func NewWindowsSession(b FFmpegBackend, cfg input.SessionConfig) (*execread.Sess
args = append(args, b.InputArgs()...)
args = append(args, "-f", "f64le", "-")

return execread.NewSession(args, false, cfg)
return execread.NewSession(args, false, cfg), nil
}

// DShow is the DirectShow input for FFmpeg on Windows.
Expand Down

0 comments on commit 08c756d

Please sign in to comment.