-
Notifications
You must be signed in to change notification settings - Fork 27
/
muxer_segmenter.go
597 lines (517 loc) · 13.1 KB
/
muxer_segmenter.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
package gohlslib
import (
"bytes"
"fmt"
"time"
"github.com/bluenviron/gohlslib/v2/pkg/codecs"
"github.com/bluenviron/mediacommon/pkg/codecs/av1"
"github.com/bluenviron/mediacommon/pkg/codecs/h264"
"github.com/bluenviron/mediacommon/pkg/codecs/h265"
"github.com/bluenviron/mediacommon/pkg/codecs/mpeg4audio"
"github.com/bluenviron/mediacommon/pkg/codecs/opus"
"github.com/bluenviron/mediacommon/pkg/codecs/vp9"
"github.com/bluenviron/mediacommon/pkg/formats/fmp4"
)
func multiplyAndDivide(v, m, d int64) int64 {
secs := v / d
dec := v % d
return (secs*m + dec*m/d)
}
func multiplyAndDivide2(v, m, d time.Duration) time.Duration {
secs := v / d
dec := v % d
return (secs*m + dec*m/d)
}
func durationToTimestamp(d time.Duration, clockRate int) int64 {
return multiplyAndDivide(int64(d), int64(clockRate), int64(time.Second))
}
func timestampToDuration(d int64, clockRate int) time.Duration {
return multiplyAndDivide2(time.Duration(d), time.Second, time.Duration(clockRate))
}
func partDurationIsCompatible(partDuration time.Duration, sampleDuration time.Duration) bool {
if sampleDuration > partDuration {
return false
}
f := (partDuration / sampleDuration)
if (partDuration % sampleDuration) != 0 {
f++
}
f *= sampleDuration
return partDuration > ((f * 85) / 100)
}
func partDurationIsCompatibleWithAll(partDuration time.Duration, sampleDurations map[time.Duration]struct{}) bool {
for sd := range sampleDurations {
if !partDurationIsCompatible(partDuration, sd) {
return false
}
}
return true
}
func findCompatiblePartDuration(
minPartDuration time.Duration,
sampleDurations map[time.Duration]struct{},
) time.Duration {
i := minPartDuration
for ; i < 5*time.Second; i += 5 * time.Millisecond {
if partDurationIsCompatibleWithAll(i, sampleDurations) {
break
}
}
return i
}
type fmp4AugmentedSample struct {
fmp4.PartSample
dts int64
ntp time.Time
}
type muxerSegmenter struct {
muxer *Muxer // TODO: remove
pendingParamsChange bool
fmp4SampleDurations map[time.Duration]struct{} // low-latency only
fmp4AdjustedPartDuration time.Duration // low-latency only
fmp4FreezeAdjustedPartDuration bool // low-latency only
}
func (s *muxerSegmenter) initialize() {
if s.muxer.Variant != MuxerVariantMPEGTS {
s.fmp4SampleDurations = make(map[time.Duration]struct{})
}
}
func (s *muxerSegmenter) writeAV1(
track *muxerTrack,
ntp time.Time,
pts int64,
tu [][]byte,
) error {
codec := track.Codec.(*codecs.AV1)
randomAccess := false
for _, obu := range tu {
var h av1.OBUHeader
err := h.Unmarshal(obu)
if err != nil {
return err
}
if h.Type == av1.OBUTypeSequenceHeader {
randomAccess = true
if !bytes.Equal(codec.SequenceHeader, obu) {
s.pendingParamsChange = true
codec.SequenceHeader = obu
}
}
}
paramsChanged := false
if randomAccess && s.pendingParamsChange {
s.pendingParamsChange = false
paramsChanged = true
}
ps, err := fmp4.NewPartSampleAV1(
randomAccess,
tu)
if err != nil {
return err
}
return s.fmp4WriteSample(
track,
randomAccess,
paramsChanged,
&fmp4AugmentedSample{
PartSample: *ps,
dts: pts,
ntp: ntp,
})
}
func (s *muxerSegmenter) writeVP9(
track *muxerTrack,
ntp time.Time,
pts int64,
frame []byte,
) error {
var h vp9.Header
err := h.Unmarshal(frame)
if err != nil {
return err
}
codec := track.Codec.(*codecs.VP9)
randomAccess := false
if !h.NonKeyFrame {
randomAccess = true
if v := h.Width(); v != codec.Width {
s.pendingParamsChange = true
codec.Width = v
}
if v := h.Height(); v != codec.Height {
s.pendingParamsChange = true
codec.Height = v
}
if h.Profile != codec.Profile {
s.pendingParamsChange = true
codec.Profile = h.Profile
}
if h.ColorConfig.BitDepth != codec.BitDepth {
s.pendingParamsChange = true
codec.BitDepth = h.ColorConfig.BitDepth
}
if v := h.ChromaSubsampling(); v != codec.ChromaSubsampling {
s.pendingParamsChange = true
codec.ChromaSubsampling = v
}
if h.ColorConfig.ColorRange != codec.ColorRange {
s.pendingParamsChange = true
codec.ColorRange = h.ColorConfig.ColorRange
}
}
paramsChanged := false
if randomAccess && s.pendingParamsChange {
s.pendingParamsChange = false
paramsChanged = true
}
// skip samples silently until we find a random access one
if !track.firstRandomAccessReceived {
if !randomAccess {
return nil
}
track.firstRandomAccessReceived = true
}
return s.fmp4WriteSample(
track,
randomAccess,
paramsChanged,
&fmp4AugmentedSample{
PartSample: fmp4.PartSample{
IsNonSyncSample: !randomAccess,
Payload: frame,
},
dts: pts,
ntp: ntp,
})
}
func (s *muxerSegmenter) writeH265(
track *muxerTrack,
ntp time.Time,
pts int64,
au [][]byte,
) error {
randomAccess := false
codec := track.Codec.(*codecs.H265)
for _, nalu := range au {
typ := h265.NALUType((nalu[0] >> 1) & 0b111111)
switch typ {
case h265.NALUType_IDR_W_RADL, h265.NALUType_IDR_N_LP, h265.NALUType_CRA_NUT:
randomAccess = true
case h265.NALUType_VPS_NUT:
if !bytes.Equal(codec.VPS, nalu) {
s.pendingParamsChange = true
codec.VPS = nalu
}
case h265.NALUType_SPS_NUT:
if !bytes.Equal(codec.SPS, nalu) {
s.pendingParamsChange = true
codec.SPS = nalu
}
case h265.NALUType_PPS_NUT:
if !bytes.Equal(codec.PPS, nalu) {
s.pendingParamsChange = true
codec.PPS = nalu
}
}
}
paramsChanged := false
if randomAccess && s.pendingParamsChange {
s.pendingParamsChange = false
paramsChanged = true
}
// skip samples silently until we find a random access one
if !track.firstRandomAccessReceived {
if !randomAccess {
return nil
}
track.firstRandomAccessReceived = true
track.h265DTSExtractor = h265.NewDTSExtractor2()
}
dts, err := track.h265DTSExtractor.Extract(au, pts)
if err != nil {
return fmt.Errorf("unable to extract DTS: %w", err)
}
ps, err := fmp4.NewPartSampleH26x(
int32(pts-dts),
randomAccess,
au)
if err != nil {
return err
}
return s.fmp4WriteSample(
track,
randomAccess,
paramsChanged,
&fmp4AugmentedSample{
PartSample: *ps,
dts: dts,
ntp: ntp,
})
}
func (s *muxerSegmenter) writeH264(
track *muxerTrack,
ntp time.Time,
pts int64,
au [][]byte,
) error {
randomAccess := false
codec := track.Codec.(*codecs.H264)
nonIDRPresent := false
for _, nalu := range au {
typ := h264.NALUType(nalu[0] & 0x1F)
switch typ {
case h264.NALUTypeIDR:
randomAccess = true
case h264.NALUTypeNonIDR:
nonIDRPresent = true
case h264.NALUTypeSPS:
if !bytes.Equal(codec.SPS, nalu) {
s.pendingParamsChange = true
codec.SPS = nalu
}
case h264.NALUTypePPS:
if !bytes.Equal(codec.PPS, nalu) {
s.pendingParamsChange = true
codec.PPS = nalu
}
}
}
if !randomAccess && !nonIDRPresent {
return nil
}
paramsChanged := false
if randomAccess && s.pendingParamsChange {
s.pendingParamsChange = false
paramsChanged = true
}
// skip samples silently until we find a random access one
if !track.firstRandomAccessReceived {
if !randomAccess {
return nil
}
track.firstRandomAccessReceived = true
track.h264DTSExtractor = h264.NewDTSExtractor2()
}
dts, err := track.h264DTSExtractor.Extract(au, pts)
if err != nil {
return fmt.Errorf("unable to extract DTS: %w", err)
}
if s.muxer.Variant == MuxerVariantMPEGTS {
if track.stream.nextSegment == nil {
err = s.muxer.createFirstSegment(timestampToDuration(dts, track.ClockRate), ntp)
if err != nil {
return err
}
} else if randomAccess && // switch segment
((timestampToDuration(dts, track.ClockRate)-
track.stream.nextSegment.(*muxerSegmentMPEGTS).startDTS) >= s.muxer.SegmentMinDuration ||
paramsChanged) {
err = s.muxer.rotateSegments(timestampToDuration(dts, track.ClockRate), ntp, false)
if err != nil {
return err
}
}
err = track.stream.nextSegment.(*muxerSegmentMPEGTS).writeH264(
track,
pts,
dts,
randomAccess,
au,
)
if err != nil {
return err
}
return nil
}
ps, err := fmp4.NewPartSampleH26x(
int32(pts-dts),
randomAccess,
au)
if err != nil {
return err
}
return s.fmp4WriteSample(
track,
randomAccess,
paramsChanged,
&fmp4AugmentedSample{
PartSample: *ps,
dts: dts,
ntp: ntp,
})
}
func (s *muxerSegmenter) writeOpus(
track *muxerTrack,
ntp time.Time,
pts int64,
packets [][]byte,
) error {
for _, packet := range packets {
err := s.fmp4WriteSample(
track,
true,
false,
&fmp4AugmentedSample{
PartSample: fmp4.PartSample{
Payload: packet,
},
dts: pts,
ntp: ntp,
},
)
if err != nil {
return err
}
duration := opus.PacketDuration(packet)
ntp = ntp.Add(duration)
pts += durationToTimestamp(duration, track.ClockRate)
}
return nil
}
func (s *muxerSegmenter) writeMPEG4Audio(
track *muxerTrack,
ntp time.Time,
pts int64,
aus [][]byte,
) error {
if s.muxer.Variant == MuxerVariantMPEGTS {
if track.isLeading {
if track.stream.nextSegment == nil {
err := s.muxer.createFirstSegment(timestampToDuration(pts, track.ClockRate), ntp)
if err != nil {
return err
}
} else if track.stream.nextSegment.(*muxerSegmentMPEGTS).audioAUCount >= mpegtsSegmentMinAUCount && // switch segment
(timestampToDuration(pts, track.ClockRate)-
track.stream.nextSegment.(*muxerSegmentMPEGTS).startDTS) >= s.muxer.SegmentMinDuration {
err := s.muxer.rotateSegments(timestampToDuration(pts, track.ClockRate), ntp, false)
if err != nil {
return err
}
}
} else {
// wait for the video track
if track.stream.nextSegment == nil {
return nil
}
}
err := track.stream.nextSegment.(*muxerSegmentMPEGTS).writeMPEG4Audio(track, pts, aus)
if err != nil {
return err
}
return nil
}
sampleRate := track.Codec.(*codecs.MPEG4Audio).Config.SampleRate
for i, au := range aus {
auNTP := ntp.Add(time.Duration(i) * mpeg4audio.SamplesPerAccessUnit *
time.Second / time.Duration(sampleRate))
auPTS := pts + int64(i)*mpeg4audio.SamplesPerAccessUnit*
int64(track.ClockRate)/int64(sampleRate)
err := s.fmp4WriteSample(
track,
true,
false,
&fmp4AugmentedSample{
PartSample: fmp4.PartSample{
Payload: au,
},
dts: auPTS,
ntp: auNTP,
},
)
if err != nil {
return err
}
}
return nil
}
// iPhone iOS fails if part durations are less than 85% of maximum part duration.
// find a part duration that is compatible with all sample durations
func (s *muxerSegmenter) fmp4AdjustPartDuration(sampleDuration time.Duration) {
if s.muxer.Variant != MuxerVariantLowLatency || s.fmp4FreezeAdjustedPartDuration {
return
}
// avoid a crash by skipping invalid durations
if sampleDuration == 0 {
return
}
if _, ok := s.fmp4SampleDurations[sampleDuration]; !ok {
s.fmp4SampleDurations[sampleDuration] = struct{}{}
s.fmp4AdjustedPartDuration = findCompatiblePartDuration(
s.muxer.PartMinDuration,
s.fmp4SampleDurations,
)
}
}
func (s *muxerSegmenter) fmp4WriteSample(
track *muxerTrack,
randomAccess bool,
paramsChanged bool,
sample *fmp4AugmentedSample,
) error {
// add a starting DTS to avoid a negative BaseTime
sample.dts += durationToTimestamp(fmp4StartDTS, track.ClockRate)
// BaseTime is still negative, this is not supported by fMP4. Reject the sample silently.
if sample.dts < 0 {
return nil
}
// put samples into a queue in order to compute the sample duration
sample, track.fmp4NextSample = track.fmp4NextSample, sample
if sample == nil {
return nil
}
duration := track.fmp4NextSample.dts - sample.dts
sample.Duration = uint32(duration)
if track.isLeading {
// create first segment
if track.stream.nextSegment == nil {
err := s.muxer.createFirstSegment(timestampToDuration(sample.dts, track.ClockRate), sample.ntp)
if err != nil {
return err
}
}
} else {
// wait for the leading track
if track.stream.nextSegment == nil {
return nil
}
}
if track.isLeading {
s.fmp4AdjustPartDuration(timestampToDuration(duration, track.ClockRate))
}
err := track.stream.nextSegment.(*muxerSegmentFMP4).writeSample(
track,
sample,
)
if err != nil {
return err
}
if track.isLeading {
// switch segment
if randomAccess && (paramsChanged ||
(timestampToDuration(track.fmp4NextSample.dts, track.ClockRate)-
track.stream.nextSegment.(*muxerSegmentFMP4).startDTS) >= s.muxer.SegmentMinDuration) {
err = s.muxer.rotateSegments(timestampToDuration(track.fmp4NextSample.dts, track.ClockRate),
track.fmp4NextSample.ntp, paramsChanged)
if err != nil {
return err
}
// reset or freeze adjusted part duration
if paramsChanged {
s.fmp4FreezeAdjustedPartDuration = false
s.fmp4SampleDurations = make(map[time.Duration]struct{})
} else {
s.fmp4FreezeAdjustedPartDuration = true
}
// switch part
} else if (s.muxer.Variant == MuxerVariantLowLatency) &&
(timestampToDuration(track.fmp4NextSample.dts, track.ClockRate)-
track.stream.nextPart.startDTS) >= s.fmp4AdjustedPartDuration {
err := s.muxer.rotateParts(timestampToDuration(track.fmp4NextSample.dts, track.ClockRate))
if err != nil {
return err
}
}
}
return nil
}