We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed02e94 commit c723cc6Copy full SHA for c723cc6
pkg/synchronizer/track.go
@@ -137,11 +137,6 @@ func (t *TrackSynchronizer) OnSenderReport(f func(drift time.Duration)) {
137
// dropped while waiting, and a boolean indicating whether the track is ready to
138
// process samples. After the gate finishes, there is no need to call the API again.
139
func (t *TrackSynchronizer) PrimeForStart(pkt jitter.ExtPacket) ([]jitter.ExtPacket, int, bool) {
140
- if !t.initialized && len(pkt.Payload) == 0 {
141
- // skip dummy packets until the track is initialized
142
- return nil, 0, false
143
- }
144
-
145
if t.initialized || t.startGate == nil {
146
if !t.initialized {
147
t.Initialize(pkt.Packet)
0 commit comments