-
-
Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathpublisher.go
747 lines (692 loc) · 18.3 KB
/
publisher.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
package m7s
import (
"fmt"
"os"
"path/filepath"
"reflect"
"slices"
"sync"
"time"
"m7s.live/v5/pkg"
"m7s.live/v5/pkg/codec"
"m7s.live/v5/pkg/task"
. "m7s.live/v5/pkg"
"m7s.live/v5/pkg/config"
"m7s.live/v5/pkg/util"
)
type PublisherState int
const (
PublisherStateInit PublisherState = iota
PublisherStateTrackAdded
PublisherStateSubscribed
PublisherStateWaitSubscriber
PublisherStateDisposed
)
const (
PublishTypePull = "pull"
PublishTypeServer = "server"
PublishTypeVod = "vod"
PublishTypeTransform = "transform"
PublishTypeReplay = "replay"
)
const threshold = 10 * time.Millisecond
type SpeedControl struct {
speed float64
pausedTime time.Duration
beginTime time.Time
beginTimestamp time.Duration
Delta time.Duration
}
func (s *SpeedControl) speedControl(speed float64, ts time.Duration) {
if speed != s.speed || s.beginTime.IsZero() {
s.speed = speed
s.beginTime = time.Now()
s.beginTimestamp = ts
s.pausedTime = 0
} else {
elapsed := time.Since(s.beginTime) - s.pausedTime
if speed == 0 {
s.Delta = ts - elapsed
return
}
should := time.Duration(float64(ts-s.beginTimestamp) / speed)
s.Delta = should - elapsed
//fmt.Println(speed, elapsed, should, s.Delta)
if s.Delta > threshold {
time.Sleep(min(s.Delta, time.Millisecond*500))
}
}
}
type AVTracks struct {
*AVTrack
SpeedControl
util.Collection[reflect.Type, *AVTrack]
sync.RWMutex
baseTs time.Duration //from old publisher's lastTs
}
func (t *AVTracks) Set(track *AVTrack) {
t.Lock()
defer t.Unlock()
t.AVTrack = track
track.BaseTs = t.baseTs
t.Add(track)
}
func (t *AVTracks) SetMinBuffer(start time.Duration) {
if t.AVTrack == nil {
return
}
t.AVTrack.BufferRange[0] = start
}
func (t *AVTracks) GetOrCreate(dataType reflect.Type) *AVTrack {
t.Lock()
defer t.Unlock()
if track, ok := t.Get(dataType); ok {
return track
}
if t.AVTrack == nil {
return nil
}
return t.CreateSubTrack(dataType)
}
func (t *AVTracks) CheckTimeout(timeout time.Duration) bool {
if t.AVTrack == nil {
return false
}
return time.Since(t.AVTrack.LastValue.WriteTime) > timeout
}
func (t *AVTracks) CreateSubTrack(dataType reflect.Type) (track *AVTrack) {
track = NewAVTrack(dataType, t.AVTrack)
track.WrapIndex = t.Length
t.Add(track)
return
}
func (t *AVTracks) Dispose() {
t.Lock()
defer t.Unlock()
for track := range t.Range {
track.Ready(ErrDiscard)
if track == t.AVTrack || track.RingWriter != t.AVTrack.RingWriter {
track.Dispose()
}
}
t.AVTrack = nil
t.Clear()
}
type Publisher struct {
PubSubBase
config.Publish
State PublisherState
Paused *util.Promise
pauseTime time.Time
AudioTrack, VideoTrack AVTracks
audioReady, videoReady *util.Promise
TimeoutTimer *time.Timer
DataTrack *DataTrack
Subscribers SubscriberCollection
GOP int
OnSeek func(time.Time)
OnGetPosition func() time.Time
PullProxy *PullProxy
dumpFile *os.File
MaxFPS float64
dropRate float64 // 丢帧率,0-1之间
}
func (p *Publisher) SubscriberRange(yield func(sub *Subscriber) bool) {
p.Subscribers.Range(yield)
}
func (p *Publisher) GetKey() string {
return p.StreamPath
}
// createPublisher -> Start -> WriteAudio/WriteVideo -> Dispose
func createPublisher(p *Plugin, streamPath string, conf config.Publish) (publisher *Publisher) {
publisher = &Publisher{Publish: conf}
publisher.Type = conf.PubType
publisher.ID = task.GetNextTaskID()
publisher.Plugin = p
publisher.TimeoutTimer = time.NewTimer(p.config.PublishTimeout)
publisher.Logger = p.Logger.With("streamPath", streamPath, "pId", publisher.ID)
publisher.Init(streamPath, &publisher.Publish)
return
}
func (p *Publisher) Start() (err error) {
s := p.Plugin.Server
if oldPublisher, ok := s.Streams.Get(p.StreamPath); ok {
if p.KickExist {
p.takeOver(oldPublisher)
} else {
return ErrStreamExist
}
}
s.Streams.Set(p)
p.Info("publish")
p.processPullProxyOnStart()
p.audioReady = util.NewPromiseWithTimeout(p, p.PublishTimeout)
if !p.PubAudio {
p.audioReady.Reject(ErrMuted)
}
p.videoReady = util.NewPromiseWithTimeout(p, p.PublishTimeout)
if !p.PubVideo {
p.videoReady.Reject(ErrMuted)
}
if p.Dump {
f := filepath.Join("./dump", p.StreamPath)
os.MkdirAll(filepath.Dir(f), 0666)
p.dumpFile, _ = os.OpenFile(filepath.Join("./dump", p.StreamPath), os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0666)
}
s.Waiting.WakeUp(p.StreamPath, p)
p.processAliasOnStart()
for plugin := range s.Plugins.Range {
plugin.OnPublish(p)
}
//s.Transforms.PublishEvent <- p
p.AddTask(&PublishTimeout{Publisher: p})
if p.PublishTimeout > 0 {
p.AddTask(&PublishNoDataTimeout{Publisher: p})
}
return
}
type PublishTimeout struct {
task.ChannelTask
Publisher *Publisher
}
func (p *PublishTimeout) Start() error {
p.SignalChan = p.Publisher.TimeoutTimer.C
return nil
}
func (p *PublishTimeout) Dispose() {
p.Publisher.TimeoutTimer.Stop()
}
func (p *PublishTimeout) Tick(any) {
if p.Publisher.Paused != nil {
return
}
switch p.Publisher.State {
case PublisherStateInit:
if p.Publisher.PublishTimeout > 0 {
p.Publisher.Stop(ErrPublishTimeout)
}
case PublisherStateTrackAdded:
if p.Publisher.Publish.IdleTimeout > 0 {
p.Publisher.Stop(ErrPublishIdleTimeout)
}
case PublisherStateSubscribed:
case PublisherStateWaitSubscriber:
if p.Publisher.Publish.DelayCloseTimeout > 0 {
p.Publisher.Stop(ErrPublishDelayCloseTimeout)
}
}
}
type PublishNoDataTimeout struct {
task.TickTask
Publisher *Publisher
}
func (p *PublishNoDataTimeout) GetTickInterval() time.Duration {
return time.Second * 5
}
func (p *PublishNoDataTimeout) Tick(any) {
if p.Publisher.Paused != nil {
return
}
if p.Publisher.VideoTrack.CheckTimeout(p.Publisher.PublishTimeout) {
p.Error("video timeout", "writeTime", p.Publisher.VideoTrack.LastValue.WriteTime)
p.Publisher.Stop(ErrPublishTimeout)
}
if p.Publisher.AudioTrack.CheckTimeout(p.Publisher.PublishTimeout) {
p.Error("audio timeout", "writeTime", p.Publisher.AudioTrack.LastValue.WriteTime)
p.Publisher.Stop(ErrPublishTimeout)
}
}
func (p *Publisher) RemoveSubscriber(subscriber *Subscriber) {
p.Subscribers.Remove(subscriber)
p.Info("subscriber -1", "count", p.Subscribers.Length)
if p.Plugin == nil {
return
}
if subscriber.BufferTime == p.BufferTime && p.Subscribers.Length > 0 {
p.BufferTime = slices.MaxFunc(p.Subscribers.Items, func(a, b *Subscriber) int {
return int(a.BufferTime - b.BufferTime)
}).BufferTime
} else {
p.BufferTime = p.Plugin.GetCommonConf().Publish.BufferTime
}
p.AudioTrack.SetMinBuffer(p.BufferTime)
p.VideoTrack.SetMinBuffer(p.BufferTime)
if p.State == PublisherStateSubscribed && p.Subscribers.Length == 0 {
p.State = PublisherStateWaitSubscriber
if p.DelayCloseTimeout > 0 {
p.TimeoutTimer.Reset(p.DelayCloseTimeout)
}
}
}
func (p *Publisher) AddSubscriber(subscriber *Subscriber) {
oldPublisher := subscriber.Publisher
subscriber.Publisher = p
if oldPublisher == nil {
close(subscriber.waitPublishDone)
} else {
if subscriber.waitingPublish() {
subscriber.Info("publisher recover", "pid", p.ID)
} else {
subscriber.Info("publisher changed", "prePid", oldPublisher.ID, "pid", p.ID)
}
}
subscriber.waitStartTime = time.Time{}
if p.Subscribers.AddUnique(subscriber) {
p.Info("subscriber +1", "count", p.Subscribers.Length)
if subscriber.BufferTime > p.BufferTime {
p.BufferTime = subscriber.BufferTime
p.AudioTrack.SetMinBuffer(p.BufferTime)
p.VideoTrack.SetMinBuffer(p.BufferTime)
}
switch p.State {
case PublisherStateTrackAdded, PublisherStateWaitSubscriber:
p.State = PublisherStateSubscribed
if p.PublishTimeout > 0 {
p.TimeoutTimer.Reset(p.PublishTimeout)
}
}
}
}
func (p *Publisher) writeAV(t *AVTrack, data IAVFrame) {
frame := &t.Value
frame.Wraps = append(frame.Wraps, data)
ts := data.GetTimestamp()
frame.CTS = data.GetCTS()
bytesIn := frame.Wraps[0].GetSize()
t.AddBytesIn(bytesIn)
frame.Timestamp = t.Tame(ts, t.FPS, p.Scale)
if p.Enabled(p, task.TraceLevel) {
codec := t.FourCC().String()
data := frame.Wraps[0].String()
p.Trace("write", "seq", frame.Sequence, "baseTs", int32(t.BaseTs/time.Millisecond), "ts0", uint32(ts/time.Millisecond), "ts", uint32(frame.Timestamp/time.Millisecond), "codec", codec, "size", bytesIn, "data", data)
}
}
func (p *Publisher) trackAdded() error {
if p.Subscribers.Length > 0 {
p.State = PublisherStateSubscribed
} else {
p.State = PublisherStateTrackAdded
}
return nil
}
func (p *Publisher) dropFrame(t *AVTrack, idr *util.Ring[AVFrame]) (drop bool) {
// Frame dropping logic based on MaxFPS
if p.MaxFPS > 0 && float64(t.FPS) > p.MaxFPS {
dropRatio := float64(t.FPS)/p.MaxFPS - 1 // How many frames to drop for each frame kept
p.dropRate = dropRatio / (dropRatio + 1) // 计算丢帧率
if p.Scale >= 8 {
// Only keep I-frames when Scale >= 8
if !t.Value.IDR {
// Drop all P-frames
return true
}
// Drop I-frames based on FPS ratio
if dropRatio > 1 && t.Value.IDR && t.Value.Sequence%uint32(dropRatio+1) != 0 {
return true
}
} else {
// Normal frame dropping strategy
if !t.Value.IDR {
// Drop P-frames based on position in GOP and FPS ratio
if idr != nil {
posInGOP := int(t.Value.Sequence - idr.Value.Sequence)
gopThreshold := int(float64(p.GOP) / (dropRatio + 1))
if posInGOP > gopThreshold {
return true
}
}
}
}
} else {
p.dropRate = 0
}
return
}
func (p *Publisher) WriteVideo(data IAVFrame) (err error) {
defer func() {
if err != nil {
data.Recycle()
}
}()
if err = p.Err(); err != nil {
return
}
if p.dumpFile != nil {
data.Dump(1, p.dumpFile)
}
if !p.PubVideo {
return ErrMuted
}
t := p.VideoTrack.AVTrack
if t == nil {
t = NewAVTrack(data, p.Logger.With("track", "video"), &p.Publish, p.videoReady)
p.VideoTrack.Set(t)
p.Call(p.trackAdded)
}
oldCodecCtx := t.ICodecCtx
err = data.Parse(t)
if err == ErrSkip {
data.Recycle()
return nil
}
codecCtxChanged := oldCodecCtx != t.ICodecCtx
if err != nil {
p.Error("parse", "err", err)
return err
}
if t.ICodecCtx == nil {
return ErrUnsupportCodec
}
if codecCtxChanged && oldCodecCtx != nil {
oldWidth, oldHeight := oldCodecCtx.(IVideoCodecCtx).Width(), oldCodecCtx.(IVideoCodecCtx).Height()
newWidth, newHeight := t.ICodecCtx.(IVideoCodecCtx).Width(), t.ICodecCtx.(IVideoCodecCtx).Height()
if oldWidth != newWidth || oldHeight != newHeight {
p.Info("video resolution changed", "oldWidth", oldWidth, "oldHeight", oldHeight, "newWidth", newWidth, "newHeight", newHeight)
}
}
var idr *util.Ring[AVFrame]
if t.IDRingList.Len() > 0 {
idr = t.IDRingList.Back().Value
if p.dropFrame(t, idr) {
data.Recycle()
return nil
}
}
if t.Value.IDR {
if !t.IsReady() {
t.Ready(nil)
} else if idr != nil {
p.GOP = int(t.Value.Sequence - idr.Value.Sequence)
} else {
p.GOP = 0
}
if p.AudioTrack.Length > 0 {
p.AudioTrack.PushIDR()
}
}
p.writeAV(t, data)
if p.VideoTrack.Length > 1 && p.VideoTrack.IsReady() {
if t.Value.Raw == nil {
if err = t.Value.Demux(t.ICodecCtx); err != nil {
t.Error("to raw", "err", err)
return err
}
}
for i, track := range p.VideoTrack.Items[1:] {
toType := track.FrameType.Elem()
toFrame := reflect.New(toType).Interface().(IAVFrame)
if track.ICodecCtx == nil {
if track.ICodecCtx, track.SequenceFrame, err = toFrame.ConvertCtx(t.ICodecCtx); err != nil {
track.Error("DecodeConfig", "err", err)
return
}
if t.IDRingList.Len() > 0 {
for rf := t.IDRingList.Front().Value; rf != t.Ring; rf = rf.Next() {
if i == 0 && rf.Value.Raw == nil {
if err = rf.Value.Demux(t.ICodecCtx); err != nil {
t.Error("to raw", "err", err)
return err
}
}
toFrame := reflect.New(toType).Interface().(IAVFrame)
toFrame.SetAllocator(data.GetAllocator())
toFrame.Mux(track.ICodecCtx, &rf.Value)
rf.Value.Wraps = append(rf.Value.Wraps, toFrame)
}
}
}
toFrame.SetAllocator(data.GetAllocator())
toFrame.Mux(track.ICodecCtx, &t.Value)
if codecCtxChanged {
track.ICodecCtx, track.SequenceFrame, err = toFrame.ConvertCtx(t.ICodecCtx)
}
t.Value.Wraps = append(t.Value.Wraps, toFrame)
if track.ICodecCtx != nil {
track.Ready(err)
}
}
}
t.Step()
p.VideoTrack.speedControl(p.Speed, t.LastTs)
return
}
func (p *Publisher) WriteAudio(data IAVFrame) (err error) {
defer func() {
if err != nil {
data.Recycle()
}
}()
if err = p.Err(); err != nil {
return
}
if p.dumpFile != nil {
data.Dump(0, p.dumpFile)
}
if !p.PubAudio {
return ErrMuted
}
// 根据丢帧率进行音频帧丢弃
if p.dropRate > 0 {
t := p.AudioTrack.AVTrack
if t != nil {
// 使用序列号进行平均丢帧
if t.Value.Sequence%uint32(1/p.dropRate) != 0 {
data.Recycle()
return nil
}
}
}
t := p.AudioTrack.AVTrack
if t == nil {
t = NewAVTrack(data, p.Logger.With("track", "audio"), &p.Publish, p.audioReady)
p.AudioTrack.Set(t)
p.Call(p.trackAdded)
}
oldCodecCtx := t.ICodecCtx
err = data.Parse(t)
if err == ErrSkip {
data.Recycle()
return nil
}
codecCtxChanged := oldCodecCtx != t.ICodecCtx
if t.ICodecCtx == nil {
return ErrUnsupportCodec
}
t.Ready(err)
p.writeAV(t, data)
if p.AudioTrack.Length > 1 && p.AudioTrack.IsReady() {
if t.Value.Raw == nil {
if err = t.Value.Demux(t.ICodecCtx); err != nil {
t.Error("to raw", "err", err)
return err
}
}
for i, track := range p.AudioTrack.Items[1:] {
toType := track.FrameType.Elem()
toFrame := reflect.New(toType).Interface().(IAVFrame)
if track.ICodecCtx == nil {
if track.ICodecCtx, track.SequenceFrame, err = toFrame.ConvertCtx(t.ICodecCtx); err != nil {
track.Error("DecodeConfig", "err", err)
return
}
if idr := p.AudioTrack.GetOldestIDR(); idr != nil {
for rf := idr; rf != t.Ring; rf = rf.Next() {
if i == 0 && rf.Value.Raw == nil {
if err = rf.Value.Demux(t.ICodecCtx); err != nil {
t.Error("to raw", "err", err)
return err
}
}
toFrame := reflect.New(toType).Interface().(IAVFrame)
toFrame.SetAllocator(data.GetAllocator())
toFrame.Mux(track.ICodecCtx, &rf.Value)
rf.Value.Wraps = append(rf.Value.Wraps, toFrame)
}
}
}
toFrame.SetAllocator(data.GetAllocator())
toFrame.Mux(track.ICodecCtx, &t.Value)
if codecCtxChanged {
track.ICodecCtx, track.SequenceFrame, err = toFrame.ConvertCtx(t.ICodecCtx)
}
t.Value.Wraps = append(t.Value.Wraps, toFrame)
if track.ICodecCtx != nil {
track.Ready(err)
}
}
}
t.Step()
p.AudioTrack.speedControl(p.Speed, t.LastTs)
return
}
func (p *Publisher) WriteData(data IDataFrame) (err error) {
for subscriber := range p.SubscriberRange {
if subscriber.DataChannel == nil {
continue
}
select {
case subscriber.DataChannel <- data:
default:
p.Warn("subscriber channel full", "subscriber", subscriber.ID)
}
}
return nil
}
func (p *Publisher) GetAudioCodecCtx() (ctx codec.ICodecCtx) {
if p.HasAudioTrack() {
return p.AudioTrack.ICodecCtx
}
return nil
}
func (p *Publisher) GetVideoCodecCtx() (ctx codec.ICodecCtx) {
if p.HasVideoTrack() {
return p.VideoTrack.ICodecCtx
}
return nil
}
func (p *Publisher) GetAudioTrack(dataType reflect.Type) (t *AVTrack) {
return p.AudioTrack.GetOrCreate(dataType)
}
func (p *Publisher) GetVideoTrack(dataType reflect.Type) (t *AVTrack) {
return p.VideoTrack.GetOrCreate(dataType)
}
func (p *Publisher) HasAudioTrack() bool {
return p.AudioTrack.Length > 0
}
func (p *Publisher) HasVideoTrack() bool {
return p.VideoTrack.Length > 0
}
func (p *Publisher) Dispose() {
s := p.Plugin.Server
if !p.StopReasonIs(ErrKick) {
s.Streams.Remove(p)
}
if p.Paused != nil {
p.Paused.Reject(p.StopReason())
}
p.processAliasOnDispose()
p.AudioTrack.Dispose()
p.VideoTrack.Dispose()
p.Info("unpublish", "remain", s.Streams.Length, "reason", p.StopReason())
if p.dumpFile != nil {
p.dumpFile.Close()
}
p.State = PublisherStateDisposed
p.processPullProxyOnDispose()
}
func (p *Publisher) TransferSubscribers(newPublisher *Publisher) {
p.Info("transfer subscribers", "newPublisher", newPublisher.ID, "newStreamPath", newPublisher.StreamPath)
var remain SubscriberCollection
for subscriber := range p.SubscriberRange {
if subscriber.Type != SubscribeTypeServer {
remain.Add(subscriber)
} else {
newPublisher.AddSubscriber(subscriber)
}
}
p.Subscribers = remain
p.BufferTime = p.Plugin.GetCommonConf().Publish.BufferTime
p.AudioTrack.SetMinBuffer(p.BufferTime)
p.VideoTrack.SetMinBuffer(p.BufferTime)
if p.State == PublisherStateSubscribed {
p.State = PublisherStateWaitSubscriber
if p.DelayCloseTimeout > 0 {
p.TimeoutTimer.Reset(p.DelayCloseTimeout)
}
}
}
func (p *Publisher) takeOver(old *Publisher) {
if old.HasAudioTrack() {
p.AudioTrack.baseTs = old.AudioTrack.LastTs
}
if old.HasVideoTrack() {
p.VideoTrack.baseTs = old.VideoTrack.LastTs
}
old.Stop(ErrKick)
p.Info("takeOver", "old", old.ID)
if old.Subscribers.Length > 0 {
p.Info(fmt.Sprintf("subscriber +%d", old.Subscribers.Length))
for subscriber := range old.SubscriberRange {
subscriber.Publisher = p
if subscriber.BufferTime > p.BufferTime {
p.BufferTime = subscriber.BufferTime
}
}
}
old.AudioTrack.Dispose()
old.VideoTrack.Dispose()
old.Subscribers = SubscriberCollection{}
}
func (p *Publisher) WaitTrack() (err error) {
var v, a = pkg.ErrNoTrack, pkg.ErrNoTrack
if p.PubVideo {
v = p.videoReady.Await()
}
if p.PubAudio {
a = p.audioReady.Await()
}
if v != nil && a != nil {
return ErrNoTrack
}
return
}
func (p *Publisher) NoVideo() {
p.PubVideo = false
if p.videoReady != nil {
p.videoReady.Reject(ErrMuted)
}
}
func (p *Publisher) NoAudio() {
p.PubAudio = false
if p.audioReady != nil {
p.audioReady.Reject(ErrMuted)
}
}
func (p *Publisher) Pause() {
if p.Paused != nil {
return
}
p.Paused = util.NewPromise(p)
p.pauseTime = time.Now()
}
func (p *Publisher) Resume() {
if p.Paused == nil {
return
}
p.Paused.Resolve()
p.Paused = nil
p.VideoTrack.pausedTime += time.Since(p.pauseTime)
p.AudioTrack.pausedTime += time.Since(p.pauseTime)
}
func (p *Publisher) Seek(ts time.Time) {
p.Info("seek", "time", ts)
if p.OnSeek != nil {
p.OnSeek(ts)
}
}
func (p *Publisher) GetPosition() (t time.Time) {
if p.OnGetPosition != nil {
return p.OnGetPosition()
}
return
}