-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathheader.go
83 lines (65 loc) · 2.07 KB
/
header.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
package mp3
/*
func (this *FrameHeader) Parse(bs []byte) error {
this.Size = 0
this.Samples = 0
this.Duration = 0
if len(bs) < 4 {
return fmt.Errorf("not enough bytes")
}
if bs[0] != 0xFF || (bs[1]&0xE0) != 0xE0 {
return fmt.Errorf("missing sync word, got: %x, %x", bs[0], bs[1])
}
this.Version = Version((bs[1] >> 3) & 0x03)
if this.Version == MPEGReserved {
return fmt.Errorf("reserved mpeg version")
}
this.Layer = Layer(((bs[1] >> 1) & 0x03))
if this.Layer == LayerReserved {
return fmt.Errorf("reserved layer")
}
this.Protection = (bs[1] & 0x01) != 0x01
bitrateIdx := (bs[2] >> 4) & 0x0F
if bitrateIdx == 0x0F {
return fmt.Errorf("invalid bitrate: %v", bitrateIdx)
}
this.Bitrate = bitrates[this.Version][this.Layer][bitrateIdx] * 1000
if this.Bitrate == 0 {
return fmt.Errorf("invalid bitrate: %v", bitrateIdx)
}
sampleRateIdx := (bs[2] >> 2) & 0x03
if sampleRateIdx == 0x03 {
return fmt.Errorf("invalid sample rate: %v", sampleRateIdx)
}
this.SampleRate = sampleRates[this.Version][sampleRateIdx]
this.Pad = ((bs[2] >> 1) & 0x01) == 0x01
this.Private = (bs[2] & 0x01) == 0x01
this.ChannelMode = ChannelMode(bs[3]>>6) & 0x03
// todo: mode extension
this.CopyRight = (bs[3]>>3)&0x01 == 0x01
this.Original = (bs[3]>>2)&0x01 == 0x01
this.Emphasis = Emphasis(bs[3] & 0x03)
if this.Emphasis == EmphReserved {
return fmt.Errorf("reserved emphasis")
}
this.Size = this.size()
this.Samples = this.samples()
this.Duration = this.duration()
return nil
}
func (this *FrameHeader) samples() int {
return samplesPerFrame[this.Version][this.Layer]
}
func (this *FrameHeader) size() int64 {
bps := float64(this.samples()) / 8
fsize := (bps * float64(this.Bitrate)) / float64(this.SampleRate)
if this.Pad {
fsize += float64(slotSize[this.Layer])
}
return int64(fsize)
}
func (this *FrameHeader) duration() time.Duration {
ms := (1000 / float64(this.SampleRate)) * float64(this.samples())
return time.Duration(time.Duration(float64(time.Millisecond) * ms))
}
*/