fix const declarations
This commit is contained in:
parent
3fc65dddfc
commit
964345f10f
14
flac.go
14
flac.go
@ -15,13 +15,13 @@ type blockType byte
|
||||
|
||||
// FLAC block types.
|
||||
const (
|
||||
streamInfoBlock blockType = 0
|
||||
paddingBlock = 1
|
||||
applicationBlock = 2
|
||||
seektableBlock = 3
|
||||
vorbisCommentBlock = 4 // Supported
|
||||
cueSheetBlock = 5
|
||||
pictureBlock = 6 // Supported
|
||||
// Stream Info Block 0
|
||||
// Padding Block 1
|
||||
// Application Block 2
|
||||
// Seektable Block 3
|
||||
// Cue Sheet Block 5
|
||||
vorbisCommentBlock blockType = 4
|
||||
pictureBlock blockType = 6
|
||||
)
|
||||
|
||||
// ReadFLACTags reads FLAC metadata from the io.ReadSeeker, returning the resulting
|
||||
|
Loading…
Reference in New Issue
Block a user