mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Move keyframe handling back to the packet level.
Doing that at the sample level suffers from too much delay due to buffering in the samplebuilder.
This commit is contained in:
parent
d47c6834dc
commit
564dcd4167
1 changed files with 4 additions and 10 deletions
|
@ -414,7 +414,7 @@ func (t *diskTrack) Write(buf []byte) (int, error) {
|
|||
count := p.SequenceNumber - lastSeqno
|
||||
if count < 256 {
|
||||
for i := uint16(1); i < count; i++ {
|
||||
recover(t, lastSeqno + i)
|
||||
recover(t, lastSeqno+i)
|
||||
}
|
||||
} else {
|
||||
requestKeyframe(t)
|
||||
|
@ -470,6 +470,9 @@ func (t *diskTrack) writeRTP(p *rtp.Packet) error {
|
|||
kf, _ := gcodecs.Keyframe(codec, p)
|
||||
if kf {
|
||||
t.savedKf = p
|
||||
t.lastKf = time.Now()
|
||||
} else if time.Since(t.lastKf) > 4*time.Second {
|
||||
requestKeyframe(t)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -518,7 +521,6 @@ func (t *diskTrack) writeBuffered(force bool) error {
|
|||
}
|
||||
}
|
||||
} else {
|
||||
keyframe = true
|
||||
if t.writer == nil {
|
||||
if !t.conn.hasVideo {
|
||||
err := t.conn.initWriter(0, 0)
|
||||
|
@ -533,14 +535,6 @@ func (t *diskTrack) writeBuffered(force bool) error {
|
|||
}
|
||||
}
|
||||
|
||||
now := time.Now()
|
||||
if keyframe {
|
||||
t.lastKf = now
|
||||
} else if t.writer == nil || now.Sub(t.lastKf) > 4*time.Second {
|
||||
requestKeyframe(t)
|
||||
return nil
|
||||
}
|
||||
|
||||
if t.writer == nil {
|
||||
continue
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue