Files
core/restream/app/avstream.go
Jan Stabenow 9c0b535199 Add v16.7.2
2022-05-13 19:26:45 +02:00

22 lines
330 B
Go

package app
type AVstreamIO struct {
State string
Packet uint64
Time uint64
Size uint64
}
type AVstream struct {
Input AVstreamIO
Output AVstreamIO
Aqueue uint64
Queue uint64
Dup uint64
Drop uint64
Enc uint64
Looping bool
Duplicating bool
GOP string
}