mirror of https://bitbucket.org/ausocean/av.git
Removed redundant else, to further abide by go style standards
This commit is contained in:
parent
9b779382eb
commit
98cd4ff9ac
|
@ -264,7 +264,7 @@ func input(input string, output string) {
|
|||
if clip, err := ringBuffer.Get(); err != nil {
|
||||
inputErrChan <- err
|
||||
return
|
||||
} else {
|
||||
}
|
||||
for {
|
||||
upperBound := clipSize+mp2tPacketSize
|
||||
_, err := io.ReadFull(br, clip[clipSize:upperBound])
|
||||
|
@ -294,7 +294,6 @@ func input(input string, output string) {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// output handles the writing to specified output
|
||||
func output(output string) {
|
||||
|
|
Loading…
Reference in New Issue