mirror of https://bitbucket.org/ausocean/av.git
revid: simplify syntax
This commit is contained in:
parent
e72ebe2f06
commit
cca5582acb
|
@ -101,18 +101,18 @@ func httpSend(d []byte, client *netsender.Sender, log func(lvl int8, msg string,
|
||||||
log(logger.Debug, "making pins, and sending recv request", "ip", ip)
|
log(logger.Debug, "making pins, and sending recv request", "ip", ip)
|
||||||
pins := netsender.MakePins(ip, "V,S")
|
pins := netsender.MakePins(ip, "V,S")
|
||||||
for i, pin := range pins {
|
for i, pin := range pins {
|
||||||
if pin.Name == "V0" || pin.Name == "S0" {
|
switch pin.Name {
|
||||||
switch pin.Name {
|
case "V0":
|
||||||
case "V0":
|
pins[i].MimeType = "video/mp2t"
|
||||||
pins[i].MimeType = "video/mp2t"
|
case "S0":
|
||||||
case "S0":
|
pins[i].MimeType = "audio/x-wav"
|
||||||
pins[i].MimeType = "audio/x-wav"
|
default:
|
||||||
}
|
continue
|
||||||
pins[i].Value = len(d)
|
|
||||||
pins[i].Data = d
|
|
||||||
send = true
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
|
pins[i].Value = len(d)
|
||||||
|
pins[i].Data = d
|
||||||
|
send = true
|
||||||
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
if !send {
|
if !send {
|
||||||
|
|
Loading…
Reference in New Issue