Skip to content

Commit

Permalink
Add non-breaking version of #160
Browse files Browse the repository at this point in the history
  • Loading branch information
aler9 committed Jul 16, 2023
1 parent 5d59489 commit 7e00619
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions packetizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@ type Packetizer interface {
}

type packetizer struct {
MTU uint16
PayloadType uint8
SSRC uint32
Payloader Payloader
Sequencer Sequencer
Timestamp uint32
ClockRate uint32
MTU uint16
PayloadType uint8
SSRC uint32
Payloader Payloader
Sequencer Sequencer
Timestamp uint32

// Deprecated: will be removed in a future version.
ClockRate uint32

extensionNumbers struct { // put extension numbers in here. If they're 0, the extension is disabled (0 is not a legal extension number)
AbsSendTime int // http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
}
Expand Down

0 comments on commit 7e00619

Please sign in to comment.