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:
|
case H264:
|
||||||
switch r.config.QuantizationMode {
|
switch r.config.QuantizationMode {
|
||||||
case QuantizationOn:
|
case QuantizationOn:
|
||||||
if r.config.Flip == config.No {
|
if r.config.Flip == No {
|
||||||
r.cmd = exec.Command("raspivid",
|
r.cmd = exec.Command("raspivid",
|
||||||
"-cd", "H264",
|
"-cd", "H264",
|
||||||
"-o", "-",
|
"-o", "-",
|
||||||
|
@ -570,7 +570,7 @@ func (r *revid) setupInputForRaspivid() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
case QuantizationOff:
|
case QuantizationOff:
|
||||||
if r.config.Flip == config.No {
|
if r.config.Flip == No {
|
||||||
r.cmd = exec.Command("raspivid",
|
r.cmd = exec.Command("raspivid",
|
||||||
"-cd", "H264",
|
"-cd", "H264",
|
||||||
"-o", "-",
|
"-o", "-",
|
||||||
|
|
Loading…
Reference in New Issue