mirror of https://bitbucket.org/ausocean/av.git
device/raspivid: fix of closing closed chan
This commit is contained in:
parent
09a763728e
commit
1525714439
|
@ -305,6 +305,9 @@ func (r *Raspivid) Read(p []byte) (int, error) {
|
|||
|
||||
// Stop will terminate the raspivid process and close the output pipe.
|
||||
func (r *Raspivid) Stop() error {
|
||||
if r.isRunning == false {
|
||||
return nil
|
||||
}
|
||||
close(r.done)
|
||||
if r.cmd == nil || r.cmd.Process == nil {
|
||||
return errors.New("raspivid process was never started")
|
||||
|
|
Loading…
Reference in New Issue