forked from bluenviron/gohlslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmuxer_segmenter_fmp4.go
523 lines (451 loc) · 10.8 KB
/
muxer_segmenter_fmp4.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
package gohlslib
import (
"fmt"
"time"
"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/formats/fmp4"
"github.com/bluenviron/gohlslib/pkg/codecs"
"github.com/bluenviron/gohlslib/pkg/storage"
)
func fmp4TimeScale(c codecs.Codec) uint32 {
switch codec := c.(type) {
case *codecs.MPEG4Audio:
return uint32(codec.SampleRate)
case *codecs.Opus:
return 48000
}
return 0
}
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 dtsExtractor interface {
Extract([][]byte, time.Duration) (time.Duration, error)
}
func allocateDTSExtractor(track *Track) dtsExtractor {
switch track.Codec.(type) {
case *codecs.H265:
return h265.NewDTSExtractor()
case *codecs.H264:
return h264.NewDTSExtractor()
}
return nil
}
type augmentedVideoSample struct {
fmp4.PartSample
dts time.Duration
ntp time.Time
}
type augmentedAudioSample struct {
fmp4.PartSample
dts time.Duration
ntp time.Time
}
type muxerSegmenterFMP4 struct {
lowLatency bool
segmentDuration time.Duration
partDuration time.Duration
segmentMaxSize uint64
videoTrack *Track
audioTrack *Track
prefix string
factory storage.Factory
publishSegment func(muxerSegment) error
publishPart func(*muxerPart)
audioTimeScale uint32
videoFirstRandomAccessReceived bool
videoDTSExtractor dtsExtractor
currentSegment *muxerSegmentFMP4
nextSegmentID uint64
nextPartID uint64
nextVideoSample *augmentedVideoSample
nextAudioSample *augmentedAudioSample
firstSegmentFinalized bool
sampleDurations map[time.Duration]struct{}
adjustedPartDuration time.Duration
}
func newMuxerSegmenterFMP4(
lowLatency bool,
segmentDuration time.Duration,
partDuration time.Duration,
segmentMaxSize uint64,
videoTrack *Track,
audioTrack *Track,
prefix string,
factory storage.Factory,
publishSegment func(muxerSegment) error,
publishPart func(*muxerPart),
) *muxerSegmenterFMP4 {
m := &muxerSegmenterFMP4{
lowLatency: lowLatency,
segmentDuration: segmentDuration,
partDuration: partDuration,
segmentMaxSize: segmentMaxSize,
videoTrack: videoTrack,
audioTrack: audioTrack,
prefix: prefix,
factory: factory,
publishSegment: publishSegment,
publishPart: publishPart,
sampleDurations: make(map[time.Duration]struct{}),
}
if audioTrack != nil {
m.audioTimeScale = fmp4TimeScale(audioTrack.Codec)
}
// add initial gaps, required by iOS LL-HLS
if m.lowLatency {
m.nextSegmentID = 7
}
return m
}
func (m *muxerSegmenterFMP4) close() {
if m.currentSegment != nil {
m.currentSegment.finalize(0) //nolint:errcheck
m.currentSegment.close()
}
}
func (m *muxerSegmenterFMP4) genSegmentID() uint64 {
id := m.nextSegmentID
m.nextSegmentID++
return id
}
func (m *muxerSegmenterFMP4) genPartID() uint64 {
id := m.nextPartID
m.nextPartID++
return id
}
// iPhone iOS fails if part durations are less than 85% of maximum part duration.
// find a part duration that is compatible with all received sample durations
func (m *muxerSegmenterFMP4) adjustPartDuration(sampleDuration time.Duration) {
if !m.lowLatency || m.firstSegmentFinalized {
return
}
// avoid a crash by skipping invalid durations
if sampleDuration == 0 {
return
}
if _, ok := m.sampleDurations[sampleDuration]; !ok {
m.sampleDurations[sampleDuration] = struct{}{}
m.adjustedPartDuration = findCompatiblePartDuration(
m.partDuration,
m.sampleDurations,
)
}
}
func (m *muxerSegmenterFMP4) writeAV1(
ntp time.Time,
dts time.Duration,
tu [][]byte,
randomAccess bool,
forceSwitch bool,
) error {
if !m.videoFirstRandomAccessReceived {
// skip sample silently until we find one with an IDR
if !randomAccess {
return nil
}
m.videoFirstRandomAccessReceived = true
}
ps, err := fmp4.NewPartSampleAV1(
randomAccess,
tu)
if err != nil {
return err
}
sample := &augmentedVideoSample{
PartSample: *ps,
dts: dts,
ntp: ntp,
}
return m.writeVideo(
randomAccess,
forceSwitch,
sample)
}
func (m *muxerSegmenterFMP4) writeVP9(
ntp time.Time,
dts time.Duration,
frame []byte,
randomAccess bool,
forceSwitch bool,
) error {
if !m.videoFirstRandomAccessReceived {
// skip sample silently until we find one with an IDR
if !randomAccess {
return nil
}
m.videoFirstRandomAccessReceived = true
}
sample := &augmentedVideoSample{
PartSample: fmp4.PartSample{
IsNonSyncSample: !randomAccess,
Payload: frame,
},
dts: dts,
ntp: ntp,
}
return m.writeVideo(
randomAccess,
forceSwitch,
sample)
}
func (m *muxerSegmenterFMP4) writeH26x(
ntp time.Time,
pts time.Duration,
au [][]byte,
randomAccess bool,
forceSwitch bool,
) error {
var dts time.Duration
if !m.videoFirstRandomAccessReceived {
// skip sample silently until we find one with an IDR
if !randomAccess {
return nil
}
m.videoFirstRandomAccessReceived = true
m.videoDTSExtractor = allocateDTSExtractor(m.videoTrack)
}
var err error
dts, err = m.videoDTSExtractor.Extract(au, pts)
if err != nil {
return fmt.Errorf("unable to extract DTS: %v", err)
}
ps, err := fmp4.NewPartSampleH26x(
int32(durationGoToMp4(pts-dts, 90000)),
randomAccess,
au)
if err != nil {
return err
}
sample := &augmentedVideoSample{
PartSample: *ps,
dts: dts,
ntp: ntp,
}
return m.writeVideo(
randomAccess,
forceSwitch,
sample)
}
func (m *muxerSegmenterFMP4) writeVideo(
randomAccess bool,
forceSwitch bool,
sample *augmentedVideoSample,
) error {
// put samples into a queue in order to
// - compute sample duration
// - check if next sample is IDR
sample, m.nextVideoSample = m.nextVideoSample, sample
if sample == nil {
return nil
}
sample.Duration = uint32(durationGoToMp4(m.nextVideoSample.dts-sample.dts, 90000))
if m.currentSegment == nil {
// create first segment
var err error
m.currentSegment, err = newMuxerSegmentFMP4(
m.lowLatency,
m.genSegmentID(),
sample.ntp,
sample.dts,
m.segmentMaxSize,
m.videoTrack,
m.audioTrack,
m.audioTimeScale,
m.prefix,
false,
m.factory,
m.genPartID,
m.publishPart,
)
if err != nil {
return err
}
}
m.adjustPartDuration(m.nextVideoSample.dts - sample.dts)
err := m.currentSegment.writeVideo(sample, m.nextVideoSample.dts, m.adjustedPartDuration)
if err != nil {
return err
}
// switch segment
if randomAccess &&
((m.nextVideoSample.dts-m.currentSegment.startDTS) >= m.segmentDuration ||
forceSwitch) {
err := m.currentSegment.finalize(m.nextVideoSample.dts)
if err != nil {
return err
}
err = m.publishSegment(m.currentSegment)
if err != nil {
return err
}
m.firstSegmentFinalized = true
m.currentSegment, err = newMuxerSegmentFMP4(
m.lowLatency,
m.genSegmentID(),
m.nextVideoSample.ntp,
m.nextVideoSample.dts,
m.segmentMaxSize,
m.videoTrack,
m.audioTrack,
m.audioTimeScale,
m.prefix,
forceSwitch,
m.factory,
m.genPartID,
m.publishPart,
)
if err != nil {
return err
}
if forceSwitch {
m.firstSegmentFinalized = false
// reset adjusted part duration
m.sampleDurations = make(map[time.Duration]struct{})
}
}
return nil
}
func (m *muxerSegmenterFMP4) writeOpus(ntp time.Time, pts time.Duration, packets [][]byte) error {
for _, packet := range packets {
err := m.writeAudio(ntp, pts, packet)
if err != nil {
return err
}
duration := opus.PacketDuration(packet)
ntp = ntp.Add(duration)
pts += duration
}
return nil
}
func (m *muxerSegmenterFMP4) writeMPEG4Audio(ntp time.Time, pts time.Duration, aus [][]byte) error {
sampleRate := time.Duration(m.audioTrack.Codec.(*codecs.MPEG4Audio).Config.SampleRate)
for i, au := range aus {
auNTP := ntp.Add(time.Duration(i) * mpeg4audio.SamplesPerAccessUnit *
time.Second / sampleRate)
auPTS := pts + time.Duration(i)*mpeg4audio.SamplesPerAccessUnit*
time.Second/sampleRate
err := m.writeAudio(auNTP, auPTS, au)
if err != nil {
return err
}
}
return nil
}
func (m *muxerSegmenterFMP4) writeAudio(ntp time.Time, dts time.Duration, au []byte) error {
if m.videoTrack != nil {
// wait for the video track
if !m.videoFirstRandomAccessReceived {
return nil
}
}
sample := &augmentedAudioSample{
PartSample: fmp4.PartSample{
Payload: au,
},
dts: dts,
ntp: ntp,
}
// put samples into a queue in order to compute the sample duration
sample, m.nextAudioSample = m.nextAudioSample, sample
if sample == nil {
return nil
}
sample.Duration = uint32(durationGoToMp4(m.nextAudioSample.dts-sample.dts, m.audioTimeScale))
if m.videoTrack == nil {
if m.currentSegment == nil {
// create first segment
var err error
m.currentSegment, err = newMuxerSegmentFMP4(
m.lowLatency,
m.genSegmentID(),
sample.ntp,
sample.dts,
m.segmentMaxSize,
m.videoTrack,
m.audioTrack,
m.audioTimeScale,
m.prefix,
false,
m.factory,
m.genPartID,
m.publishPart,
)
if err != nil {
return err
}
}
} else {
// wait for the video track
if m.currentSegment == nil {
return nil
}
}
err := m.currentSegment.writeAudio(sample, m.nextAudioSample.dts, m.partDuration)
if err != nil {
return err
}
// switch segment
if m.videoTrack == nil &&
(m.nextAudioSample.dts-m.currentSegment.startDTS) >= m.segmentDuration {
err := m.currentSegment.finalize(m.nextAudioSample.dts)
if err != nil {
return err
}
err = m.publishSegment(m.currentSegment)
if err != nil {
return err
}
m.firstSegmentFinalized = true
m.currentSegment, err = newMuxerSegmentFMP4(
m.lowLatency,
m.genSegmentID(),
m.nextAudioSample.ntp,
m.nextAudioSample.dts,
m.segmentMaxSize,
m.videoTrack,
m.audioTrack,
m.audioTimeScale,
m.prefix,
false,
m.factory,
m.genPartID,
m.publishPart,
)
if err != nil {
return err
}
}
return nil
}