| 11 | import "github.com/q191201771/naza/pkg/bele" |
| 12 | |
| 13 | type Rr struct { |
| 14 | senderSsrc uint32 |
| 15 | mediaSsrc uint32 |
| 16 | fraction uint8 |
| 17 | lost uint32 |
| 18 | cycles uint16 |
| 19 | extendedSeq uint32 |
| 20 | jitter uint32 |
| 21 | lsr uint32 |
| 22 | dlsr uint32 // default 0 |
| 23 | } |
| 24 | |
| 25 | func (r *Rr) Pack() []byte { |
| 26 | const lenInWords = 8 |
nothing calls this directly
no outgoing calls
no test coverage detected