-
Notifications
You must be signed in to change notification settings - Fork 83
/
sps.go
661 lines (621 loc) · 21.6 KB
/
sps.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
package hevc
import (
"bytes"
"fmt"
"io"
"github.com/Eyevinn/mp4ff/avc"
"github.com/Eyevinn/mp4ff/bits"
)
// SPS - HEVC SPS parameters
// ISO/IEC 23008-2 Sec. 7.3.2.2
type SPS struct {
VpsID byte
MaxSubLayersMinus1 byte
TemporalIDNestingFlag bool
ProfileTierLevel ProfileTierLevel
SpsID byte
ChromaFormatIDC byte
SeparateColourPlaneFlag bool
ConformanceWindowFlag bool
PicWidthInLumaSamples uint32
PicHeightInLumaSamples uint32
ConformanceWindow ConformanceWindow
BitDepthLumaMinus8 byte
BitDepthChromaMinus8 byte
Log2MaxPicOrderCntLsbMinus4 byte
SubLayerOrderingInfoPresentFlag bool
SubLayeringOrderingInfos []SubLayerOrderingInfo
Log2MinLumaCodingBlockSizeMinus3 byte
Log2DiffMaxMinLumaCodingBlockSize byte
Log2MinLumaTransformBlockSizeMinus2 byte
Log2DiffMaxMinLumaTransformBlockSize byte
MaxTransformHierarchyDepthInter byte
MaxTransformHierarchyDepthIntra byte
ScalingListEnabledFlag bool
ScalingListDataPresentFlag bool
AmpEnabledFlag bool
SampleAdaptiveOffsetEnabledFlag bool
PCMEnabledFlag bool
PcmSampleBitDepthLumaMinus1 byte
PcmSampleBitDepthChromaMinus1 byte
Log2MinPcmLumaCodingBlockSize uint16
Log2DiffMaxMinPcmLumaCodingBlockSize uint16
PcmLoopFilterDisabledFlag bool
NumShortTermRefPicSets byte
ShortTermRefPicSets []ShortTermRPS
LongTermRefPicsPresentFlag bool
NumLongTermRefPics uint8
LongTermRefPicSets []LongTermRPS
SpsTemporalMvpEnabledFlag bool
StrongIntraSmoothingEnabledFlag bool
VUIParametersPresentFlag bool
VUI *VUIParameters
ExtensionPresentFlag bool
Extension4bits uint8
RangeExtensionFlag bool
RangeExtension *SPSRangeExtension
MultilayerExtensionFlag bool
MultilayerExtension *SPSMultilayerExtension
// SPS 3D extension
D3ExtensionFlag bool
D3Extension *SPS3dExtension
SccExtensionFlag bool
SccExtension *SPSSccExtension
ExtensionDataFlag []bool
}
// ProfileTierLevel according to ISO/IEC 23008-2 Section 7.3.3
type ProfileTierLevel struct {
GeneralProfileSpace byte
GeneralTierFlag bool
GeneralProfileIDC byte
GeneralProfileCompatibilityFlags uint32
GeneralConstraintIndicatorFlags uint64 // 48 bits
GeneralProgressiveSourceFlag bool
GeneralInterlacedSourceFlag bool
GeneralNonPackedConstraintFlag bool
GeneralFrameOnlyConstraintFlag bool
// 43 + 1 bits of info
GeneralLevelIDC byte
// Sublayer stuff
}
// ConformanceWindow according to ISO/IEC 23008-2
type ConformanceWindow struct {
LeftOffset uint32
RightOffset uint32
TopOffset uint32
BottomOffset uint32
}
// SubLayerOrderingInfo according to ISO/IEC 23008-2
type SubLayerOrderingInfo struct {
MaxDecPicBufferingMinus1 byte
MaxNumReorderPics byte
MaxLatencyIncreasePlus1 byte
}
// VUIParameters - Visual Usability Information as defined in Section E.2
type VUIParameters struct {
SampleAspectRatioWidth uint
SampleAspectRatioHeight uint
OverscanInfoPresentFlag bool
OverscanAppropriateFlag bool
VideoSignalTypePresentFlag bool
VideoFormat byte
VideoFullRangeFlag bool
ColourDescriptionFlag bool
ColourPrimaries byte
TransferCharacteristics byte
MatrixCoefficients byte
ChromaLocInfoPresentFlag bool
ChromaSampleLocTypeTopField uint
ChromaSampleLocTypeBottomField uint
NeutralChromaIndicationFlag bool
FieldSeqFlag bool
FrameFieldInfoPresentFlag bool
DefaultDisplayWindowFlag bool
DefDispWinLeftOffset uint
DefDispWinRightOffset uint
DefDispWinTopOffset uint
DefDispWinBottomOffset uint
TimingInfoPresentFlag bool
NumUnitsInTick uint
TimeScale uint
PocProportionalToTimingFlag bool
NumTicksPocDiffOneMinus1 uint
HrdParametersPresentFlag bool
BitstreamRestrictionFlag bool
BitstreamResctrictions *BitstreamRestrictions
}
// BitstreamRestrictrictions - optional information
type BitstreamRestrictions struct {
TilesFixedStructureFlag bool
MVOverPicBoundariesFlag bool
RestrictedRefsPicsListsFlag bool
MinSpatialSegmentationIDC uint
MaxBytesPerPicDenom uint
MaxBitsPerMinCuDenom uint
Log2MaxMvLengthHorizontal uint
Log2MaxMvLengthVertical uint
}
type LongTermRPS struct {
PocLsbLt uint16
UsedByCurrPicLtFlag bool
DeltaPocMsbPresentFlag bool
DeltaPocMsbCycleLt uint
}
type SPSRangeExtension struct {
TransformSkipRotationEnabledFlag bool
TransformSkipContextEnabledFlag bool
ImplicitRdpcmEnabledFlag bool
ExplicitRdpcmEnabledFlag bool
ExtendedPrecisionProcessingFlag bool
IntraSmoothingDisabledFlag bool
HighPrecisionOffsetsEnabledFlag bool
PersistentRiceAdaptationEnabledFlag bool
CabacBypassAlignmentEnabledFlag bool
}
type SPSMultilayerExtension struct {
InterViewMvVertConstraintFlag bool
}
type SPS3dExtension struct {
IvDiMcEnabledFlag0 bool
IvMvScalEnabledFlag0 bool
Og2IvmcSubPbSizeMinus3 uint
IvResPredEnabledFlag bool
DepthRefEnabledFlag bool
VspMcEnabledFlag bool
DbbpEnabledFlag bool
IvDiMcEnabledFlag1 bool
IvMvScalEnabledFlag1 bool
TexMcEnabledFlag bool
Log2TexmcSubPbSizeMinus3 uint
IntraContourEnabledFlag bool
IntraDcOnlyWedgeEnabledFlag bool
CqtCuPartPredEnabledFlag bool
InterDcOnlyEnabledFlag bool
SkipIntraEnabledFlag bool
}
type SPSSccExtension struct {
CurrPicRefEnabledFlag bool
PaletteModeEnabledFlag bool
PaletteMaxSize uint
DeltaPaletteMaxPredictorSize uint
PalettePredictorInitializersPresentFlag bool
NumPalettePredictorInitializersMinus1 uint
PalettePredictorInitializer [][]uint
MotionVectorResolutionControlIdc uint8
IntraBoundaryFilteringDisabledFlag bool
}
// ParseSPSNALUnit parses SPS NAL unit starting with NAL unit header
func ParseSPSNALUnit(data []byte) (*SPS, error) {
sps := &SPS{}
rd := bytes.NewReader(data)
r := bits.NewAccErrEBSPReader(rd)
// Note! First two bytes are NALU Header
naluHdrBits := r.Read(16)
naluType := GetNaluType(byte(naluHdrBits >> 8))
if naluType != NALU_SPS {
return nil, fmt.Errorf("NALU type is %s not SPS", naluType)
}
sps.VpsID = byte(r.Read(4))
sps.MaxSubLayersMinus1 = byte(r.Read(3))
sps.TemporalIDNestingFlag = r.ReadFlag()
sps.ProfileTierLevel.GeneralProfileSpace = byte(r.Read(2))
sps.ProfileTierLevel.GeneralTierFlag = r.ReadFlag()
sps.ProfileTierLevel.GeneralProfileIDC = byte(r.Read(5))
sps.ProfileTierLevel.GeneralProfileCompatibilityFlags = uint32(r.Read(32))
sps.ProfileTierLevel.GeneralConstraintIndicatorFlags = uint64(r.Read(48))
sps.ProfileTierLevel.GeneralLevelIDC = byte(r.Read(8))
if sps.MaxSubLayersMinus1 != 0 {
return sps, nil // Cannot parse any further
}
sps.SpsID = byte(r.ReadExpGolomb())
sps.ChromaFormatIDC = byte(r.ReadExpGolomb())
if sps.ChromaFormatIDC == 3 {
sps.SeparateColourPlaneFlag = r.ReadFlag()
}
sps.PicWidthInLumaSamples = uint32(r.ReadExpGolomb())
sps.PicHeightInLumaSamples = uint32(r.ReadExpGolomb())
sps.ConformanceWindowFlag = r.ReadFlag()
if sps.ConformanceWindowFlag {
sps.ConformanceWindow = ConformanceWindow{
LeftOffset: uint32(r.ReadExpGolomb()),
RightOffset: uint32(r.ReadExpGolomb()),
TopOffset: uint32(r.ReadExpGolomb()),
BottomOffset: uint32(r.ReadExpGolomb()),
}
}
sps.BitDepthLumaMinus8 = byte(r.ReadExpGolomb())
sps.BitDepthChromaMinus8 = byte(r.ReadExpGolomb())
sps.Log2MaxPicOrderCntLsbMinus4 = byte(r.ReadExpGolomb())
sps.SubLayerOrderingInfoPresentFlag = r.ReadFlag()
startValue := sps.MaxSubLayersMinus1
if sps.SubLayerOrderingInfoPresentFlag {
startValue = 0
}
for i := startValue; i <= sps.MaxSubLayersMinus1; i++ {
sps.SubLayeringOrderingInfos = append(
sps.SubLayeringOrderingInfos,
SubLayerOrderingInfo{
MaxDecPicBufferingMinus1: byte(r.ReadExpGolomb()),
MaxNumReorderPics: byte(r.ReadExpGolomb()),
MaxLatencyIncreasePlus1: byte(r.ReadExpGolomb()),
})
}
sps.Log2MinLumaCodingBlockSizeMinus3 = byte(r.ReadExpGolomb())
sps.Log2DiffMaxMinLumaCodingBlockSize = byte(r.ReadExpGolomb())
sps.Log2MinLumaTransformBlockSizeMinus2 = byte(r.ReadExpGolomb())
sps.Log2DiffMaxMinLumaTransformBlockSize = byte(r.ReadExpGolomb())
sps.MaxTransformHierarchyDepthInter = byte(r.ReadExpGolomb())
sps.MaxTransformHierarchyDepthIntra = byte(r.ReadExpGolomb())
sps.ScalingListEnabledFlag = r.ReadFlag()
if sps.ScalingListEnabledFlag {
sps.ScalingListDataPresentFlag = r.ReadFlag()
if sps.ScalingListDataPresentFlag {
readPastScalingListData(r)
}
}
sps.AmpEnabledFlag = r.ReadFlag()
sps.SampleAdaptiveOffsetEnabledFlag = r.ReadFlag()
sps.PCMEnabledFlag = r.ReadFlag()
if sps.PCMEnabledFlag {
sps.PcmSampleBitDepthLumaMinus1 = byte(r.Read(4))
sps.PcmSampleBitDepthChromaMinus1 = byte(r.Read(4))
sps.Log2MinPcmLumaCodingBlockSize = uint16(r.ReadExpGolomb())
sps.Log2DiffMaxMinPcmLumaCodingBlockSize = uint16(r.ReadExpGolomb())
sps.PcmLoopFilterDisabledFlag = r.ReadFlag()
}
sps.NumShortTermRefPicSets = byte(r.ReadExpGolomb())
if sps.NumShortTermRefPicSets > 0 {
sps.ShortTermRefPicSets = make([]ShortTermRPS, sps.NumShortTermRefPicSets)
for idx := byte(0); idx < sps.NumShortTermRefPicSets; idx++ {
sps.ShortTermRefPicSets[idx] = parseShortTermRPS(r, idx, sps.NumShortTermRefPicSets, sps)
if r.AccError() != nil { // Don't continue if we have an issue
return sps, r.AccError()
}
}
}
sps.LongTermRefPicsPresentFlag = r.ReadFlag()
if sps.LongTermRefPicsPresentFlag {
// value shall be in the range of 0 to 32, inclusive
sps.NumLongTermRefPics = uint8(r.ReadExpGolomb())
if sps.NumLongTermRefPics > 0 {
sps.LongTermRefPicSets = make([]LongTermRPS, sps.NumLongTermRefPics)
for i := uint8(0); i < sps.NumLongTermRefPics; i++ {
sps.LongTermRefPicSets[i] = LongTermRPS{
PocLsbLt: uint16(r.Read(int(sps.Log2MaxPicOrderCntLsbMinus4 + 4))),
UsedByCurrPicLtFlag: r.ReadFlag(),
}
}
}
}
sps.SpsTemporalMvpEnabledFlag = r.ReadFlag()
sps.StrongIntraSmoothingEnabledFlag = r.ReadFlag()
sps.VUIParametersPresentFlag = r.ReadFlag()
if sps.VUIParametersPresentFlag {
sps.VUI = parseVUI(r)
}
if r.AccError() != nil {
return nil, r.AccError()
}
sps.ExtensionPresentFlag = r.ReadFlag()
if sps.ExtensionPresentFlag {
sps.RangeExtensionFlag = r.ReadFlag()
sps.MultilayerExtensionFlag = r.ReadFlag()
sps.D3ExtensionFlag = r.ReadFlag()
sps.SccExtensionFlag = r.ReadFlag()
sps.Extension4bits = uint8(r.Read(4))
}
if sps.RangeExtensionFlag {
sps.RangeExtension = &SPSRangeExtension{
TransformSkipRotationEnabledFlag: r.ReadFlag(),
TransformSkipContextEnabledFlag: r.ReadFlag(),
ImplicitRdpcmEnabledFlag: r.ReadFlag(),
ExplicitRdpcmEnabledFlag: r.ReadFlag(),
ExtendedPrecisionProcessingFlag: r.ReadFlag(),
IntraSmoothingDisabledFlag: r.ReadFlag(),
HighPrecisionOffsetsEnabledFlag: r.ReadFlag(),
PersistentRiceAdaptationEnabledFlag: r.ReadFlag(),
CabacBypassAlignmentEnabledFlag: r.ReadFlag(),
}
}
if sps.MultilayerExtensionFlag {
sps.MultilayerExtension = &SPSMultilayerExtension{
InterViewMvVertConstraintFlag: r.ReadFlag(),
}
}
if sps.D3ExtensionFlag {
sps.D3Extension = parseSPS3dExtension(r)
}
if sps.SccExtensionFlag {
sps.SccExtension = parseSPSSccExtension(r, sps.ChromaFormatIDC,
sps.BitDepthLumaMinus8, sps.BitDepthChromaMinus8)
}
if sps.Extension4bits > 0 {
// Reserved for future use. Shall be empty
more, err := r.MoreRbspData()
if err != nil {
return nil, err
}
for more {
sps.ExtensionDataFlag = append(sps.ExtensionDataFlag, r.ReadFlag())
more, err = r.MoreRbspData()
if err != nil {
return nil, err
}
}
}
err := r.ReadRbspTrailingBits()
if err != nil {
if r.AccError() != nil {
return nil, r.AccError()
}
return nil, err
}
if r.AccError() != nil {
return nil, r.AccError()
}
_ = r.Read(1)
if r.AccError() != io.EOF {
return nil, fmt.Errorf("Not at end after reading rbsp_trailing_bits")
}
return sps, nil
}
// ImageSize - calculated width and height using ConformanceWindow
func (s *SPS) ImageSize() (width, height uint32) {
encWidth, encHeight := s.PicWidthInLumaSamples, s.PicHeightInLumaSamples
var subWidthC, subHeightC uint32 = 1, 1
switch s.ChromaFormatIDC {
case 1: // 4:2:0
subWidthC, subHeightC = 2, 2
case 2: // 4:2:2
subWidthC = 2
}
width = encWidth - (s.ConformanceWindow.LeftOffset+s.ConformanceWindow.RightOffset)*subWidthC
height = encHeight - (s.ConformanceWindow.TopOffset+s.ConformanceWindow.BottomOffset)*subHeightC
return width, height
}
// parseVUI - parse VUI (Visual Usability Information)
// if parseVUIBeyondAspectRatio is false, stop after AspectRatio has been parsed
func parseVUI(r *bits.AccErrEBSPReader) *VUIParameters {
vui := &VUIParameters{}
aspectRatioInfoPresentFlag := r.ReadFlag()
if aspectRatioInfoPresentFlag {
aspectRatioIDC := r.Read(8)
if aspectRatioIDC == avc.ExtendedSAR {
vui.SampleAspectRatioWidth = r.Read(16)
vui.SampleAspectRatioHeight = r.Read(16)
} else {
var err error
vui.SampleAspectRatioWidth, vui.SampleAspectRatioHeight, err = avc.GetSARfromIDC(aspectRatioIDC)
if err != nil {
r.SetError(fmt.Errorf("GetSARFromIDC: %w", err))
}
}
}
vui.OverscanInfoPresentFlag = r.ReadFlag()
if vui.OverscanInfoPresentFlag {
vui.OverscanAppropriateFlag = r.ReadFlag()
}
vui.VideoSignalTypePresentFlag = r.ReadFlag()
if vui.VideoSignalTypePresentFlag {
vui.VideoFormat = byte(r.Read(3))
vui.VideoFullRangeFlag = r.ReadFlag()
vui.ColourDescriptionFlag = r.ReadFlag()
if vui.ColourDescriptionFlag {
vui.ColourPrimaries = byte(r.Read(8))
vui.TransferCharacteristics = byte(r.Read(8))
vui.MatrixCoefficients = byte(r.Read(8))
}
}
vui.ChromaLocInfoPresentFlag = r.ReadFlag()
if vui.ChromaLocInfoPresentFlag {
vui.ChromaSampleLocTypeTopField = r.ReadExpGolomb()
vui.ChromaSampleLocTypeBottomField = r.ReadExpGolomb()
}
vui.NeutralChromaIndicationFlag = r.ReadFlag()
vui.FieldSeqFlag = r.ReadFlag()
vui.FrameFieldInfoPresentFlag = r.ReadFlag()
vui.DefaultDisplayWindowFlag = r.ReadFlag()
if vui.DefaultDisplayWindowFlag {
vui.DefDispWinLeftOffset = r.ReadExpGolomb()
vui.DefDispWinRightOffset = r.ReadExpGolomb()
vui.DefDispWinTopOffset = r.ReadExpGolomb()
vui.DefDispWinBottomOffset = r.ReadExpGolomb()
}
vui.TimingInfoPresentFlag = r.ReadFlag()
if vui.TimingInfoPresentFlag {
vui.NumUnitsInTick = r.Read(32)
vui.TimeScale = r.Read(32)
vui.PocProportionalToTimingFlag = r.ReadFlag()
if vui.PocProportionalToTimingFlag {
vui.NumTicksPocDiffOneMinus1 = r.ReadExpGolomb()
}
vui.HrdParametersPresentFlag = r.ReadFlag()
if vui.HrdParametersPresentFlag {
//TODO. Add HrdParameters parsing according to E.3.2 if needed
return vui
}
}
vui.BitstreamRestrictionFlag = r.ReadFlag()
if vui.BitstreamRestrictionFlag {
vui.BitstreamResctrictions = parseBitstreamRestrictions(r)
}
return vui
}
func parseBitstreamRestrictions(r *bits.AccErrEBSPReader) *BitstreamRestrictions {
br := BitstreamRestrictions{}
br.TilesFixedStructureFlag = r.ReadFlag()
br.MVOverPicBoundariesFlag = r.ReadFlag()
br.RestrictedRefsPicsListsFlag = r.ReadFlag()
br.MinSpatialSegmentationIDC = r.ReadExpGolomb()
br.MaxBytesPerPicDenom = r.ReadExpGolomb()
br.MaxBitsPerMinCuDenom = r.ReadExpGolomb()
br.Log2MaxMvLengthHorizontal = r.ReadExpGolomb()
br.Log2MaxMvLengthVertical = r.ReadExpGolomb()
return &br
}
// ShortTermRPS - Short term Reference Picture Set
type ShortTermRPS struct {
// Delta Picture Order Count
DeltaPocS0 []uint32
DeltaPocS1 []uint32
UsedByCurrPicS0 []bool
UsedByCurrPicS1 []bool
NumNegativePics byte
NumPositivePics byte
NumDeltaPocs byte
}
func (st ShortTermRPS) countInUsePics() uint8 {
var NumPicTotalCurr uint8
for _, n := range st.UsedByCurrPicS0 {
if n {
NumPicTotalCurr++
}
}
for _, p := range st.UsedByCurrPicS1 {
if p {
NumPicTotalCurr++
}
}
return NumPicTotalCurr
}
const maxSTRefPics = 16
// parseShortTermRPS - short-term reference pictures with syntax from 7.3.7.
// Focus is on reading/parsing beyond this structure in SPS (and possibly in slice header)
func parseShortTermRPS(r *bits.AccErrEBSPReader, idx, numSTRefPicSets byte, sps *SPS) ShortTermRPS {
stps := ShortTermRPS{}
interRPSPredFlag := false
if idx > 0 {
interRPSPredFlag = r.ReadFlag()
}
if interRPSPredFlag {
deltaIdx := byte(1)
if idx == numSTRefPicSets { // Slice header
deltaIdx = byte(r.ReadExpGolomb() + 1)
// parse delta_idx_minus1
}
if deltaIdx > idx {
r.SetError(fmt.Errorf("deltaIdx > idx in parseShortTermRPS"))
}
/* deltaRpsSign */ _ = r.Read(1)
/* absDeltaRpsMinus1*/ _ = r.ReadExpGolomb()
//deltaRps := (1 - (deltaRpsSign << 1)) * (absDeltaRpsMinus1 + 1)
refIdx := idx - deltaIdx
numDeltaPocs := sps.ShortTermRefPicSets[refIdx].NumDeltaPocs
for j := byte(0); j < numDeltaPocs; j++ {
usedByCurrPicFlag := r.ReadFlag()
useDeltaFlag := false
if !usedByCurrPicFlag {
useDeltaFlag = r.ReadFlag()
}
if usedByCurrPicFlag || useDeltaFlag {
stps.NumDeltaPocs++
}
}
} else {
stps.NumNegativePics = byte(r.ReadExpGolomb())
stps.NumPositivePics = byte(r.ReadExpGolomb())
if stps.NumNegativePics > maxSTRefPics || stps.NumPositivePics > maxSTRefPics {
r.SetError(fmt.Errorf("more than %d short term reference pictures", maxSTRefPics))
return stps
}
stps.NumDeltaPocs = stps.NumNegativePics + stps.NumPositivePics
stps.DeltaPocS0 = make([]uint32, stps.NumNegativePics)
stps.UsedByCurrPicS0 = make([]bool, stps.NumNegativePics)
for i := byte(0); i < stps.NumNegativePics; i++ {
stps.DeltaPocS0[i] = uint32(r.ReadExpGolomb() + 1)
stps.UsedByCurrPicS0[i] = r.ReadFlag()
}
stps.DeltaPocS1 = make([]uint32, stps.NumPositivePics)
stps.UsedByCurrPicS1 = make([]bool, stps.NumPositivePics)
for i := byte(0); i < stps.NumPositivePics; i++ {
stps.DeltaPocS1[i] = uint32(r.ReadExpGolomb() + 1)
stps.UsedByCurrPicS1[i] = r.ReadFlag()
}
}
return stps
}
// readPastScalingListData - read and parse all bits of scaling list, without storing values
func readPastScalingListData(r *bits.AccErrEBSPReader) {
for sizeId := 0; sizeId < 4; sizeId++ {
nrMatrixIds := 6
if sizeId == 3 {
nrMatrixIds = 2
}
for matrixId := 0; matrixId < nrMatrixIds; matrixId++ {
flag := r.ReadFlag() // scaling_list_pred_mode_flag[sizeId][matrixId]
if !flag {
_ = r.ReadExpGolomb() // scaling_list_pred_matrix_id_delta[sizeId][matrixId]
} else {
// nextCoef = 8;
coefNum := (1 << (4 + (sizeId << 1)))
if coefNum > 64 {
coefNum = 64
}
if sizeId > 1 {
_ = r.ReadExpGolomb // scaling_list_dc_coef_minus8[sizeId − 2][matrixId]
// nextCoef = scaling_list_dc_coef_minus8[sizeId − 2][matrixId] + 8
}
for i := 0; i < coefNum; i++ {
_ = r.ReadExpGolomb() // scaling_list_delta_coef
// nextCoef = ( nextCoef + scaling_list_delta_coef + 256 ) % 256
// ScalingList[sizeId][matrixId][i] = nextCoef
}
}
}
}
}
func parseSPS3dExtension(r *bits.AccErrEBSPReader) *SPS3dExtension {
ext := &SPS3dExtension{
IvDiMcEnabledFlag0: r.ReadFlag(),
IvMvScalEnabledFlag0: r.ReadFlag(),
Og2IvmcSubPbSizeMinus3: r.ReadExpGolomb(),
IvResPredEnabledFlag: r.ReadFlag(),
DepthRefEnabledFlag: r.ReadFlag(),
VspMcEnabledFlag: r.ReadFlag(),
DbbpEnabledFlag: r.ReadFlag(),
IvDiMcEnabledFlag1: r.ReadFlag(),
IvMvScalEnabledFlag1: r.ReadFlag(),
TexMcEnabledFlag: r.ReadFlag(),
Log2TexmcSubPbSizeMinus3: r.ReadExpGolomb(),
IntraContourEnabledFlag: r.ReadFlag(),
IntraDcOnlyWedgeEnabledFlag: r.ReadFlag(),
CqtCuPartPredEnabledFlag: r.ReadFlag(),
InterDcOnlyEnabledFlag: r.ReadFlag(),
SkipIntraEnabledFlag: r.ReadFlag(),
}
return ext
}
func parseSPSSccExtension(r *bits.AccErrEBSPReader, ChromaFormatIDC,
BitDepthLumaMinus8, BitDepthChromaMinus8 byte) *SPSSccExtension {
ext := &SPSSccExtension{}
ext.CurrPicRefEnabledFlag = r.ReadFlag()
ext.PaletteModeEnabledFlag = r.ReadFlag()
if ext.PaletteModeEnabledFlag {
ext.PaletteMaxSize = r.ReadExpGolomb()
ext.DeltaPaletteMaxPredictorSize = r.ReadExpGolomb()
ext.PalettePredictorInitializersPresentFlag = r.ReadFlag()
if ext.PalettePredictorInitializersPresentFlag {
ext.NumPalettePredictorInitializersMinus1 = r.ReadExpGolomb()
numComps := 3
if ChromaFormatIDC == 0 {
numComps = 1
}
ext.PalettePredictorInitializer = make([][]uint, numComps)
// Fill luma
for i := uint(0); i <= ext.NumPalettePredictorInitializersMinus1; i++ {
ext.PalettePredictorInitializer[0] =
append(ext.PalettePredictorInitializer[0], r.Read(int(BitDepthLumaMinus8+8)))
}
// Fill chroma if any
for comp := 1; comp < numComps; comp++ {
for i := uint(0); i <= ext.NumPalettePredictorInitializersMinus1; i++ {
ext.PalettePredictorInitializer[comp] =
append(ext.PalettePredictorInitializer[comp], r.Read(int(BitDepthChromaMinus8+8)))
}
}
}
}
ext.MotionVectorResolutionControlIdc = uint8(r.Read(2))
ext.IntraBoundaryFilteringDisabledFlag = r.ReadFlag()
return ext
}