datarhei-dragonfork-core/restream/app/avstream.go

22 lines
401 B
Go
Raw Normal View History

2022-05-13 13:26:45 -04:00
package app
type AVstreamIO struct {
State string
Packet uint64 // counter
2022-05-13 13:26:45 -04:00
Time uint64
Size uint64 // bytes
2022-05-13 13:26:45 -04:00
}
type AVstream struct {
Input AVstreamIO
Output AVstreamIO
Aqueue uint64 // gauge
Queue uint64 // gauge
Dup uint64 // counter
Drop uint64 // counter
Enc uint64 // counter
2022-05-13 13:26:45 -04:00
Looping bool
Duplicating bool
GOP string
}