StreamST struct
| 38 | |
| 39 | //StreamST struct |
| 40 | type StreamST struct { |
| 41 | URL string `json:"url"` |
| 42 | Status bool `json:"status"` |
| 43 | OnDemand bool `json:"on_demand"` |
| 44 | DisableAudio bool `json:"disable_audio"` |
| 45 | Debug bool `json:"debug"` |
| 46 | RunLock bool `json:"-"` |
| 47 | Codecs []av.CodecData |
| 48 | Cl map[string]viewer |
| 49 | } |
| 50 | |
| 51 | type viewer struct { |
| 52 | c chan av.Packet |
nothing calls this directly
no outgoing calls
no test coverage detected