mirror of https://bitbucket.org/ausocean/av.git
fixed another syntax error
This commit is contained in:
parent
ef1ede1eb5
commit
16d925af08
|
@ -537,7 +537,7 @@ func (r *revid) setupInputForRaspivid() error {
|
|||
case H264:
|
||||
switch r.config.QuantizationMode {
|
||||
case QuantizationOn:
|
||||
if r.config.Flip == config.No {
|
||||
if r.config.Flip == No {
|
||||
r.cmd = exec.Command("raspivid",
|
||||
"-cd", "H264",
|
||||
"-o", "-",
|
||||
|
@ -570,7 +570,7 @@ func (r *revid) setupInputForRaspivid() error {
|
|||
}
|
||||
|
||||
case QuantizationOff:
|
||||
if r.config.Flip == config.No {
|
||||
if r.config.Flip == No {
|
||||
r.cmd = exec.Command("raspivid",
|
||||
"-cd", "H264",
|
||||
"-o", "-",
|
||||
|
|
Loading…
Reference in New Issue