You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
292 B
12 lines
292 B
package v2 |
|
|
|
const HEADERIDENTIFIER string = "ID3" |
|
const HEADERSIZE int = 10 |
|
|
|
const V2_2 string = "ID3v2.2" |
|
const V2_3 string = "ID3v2.3" |
|
const V2_4 string = "ID3v2.4" |
|
|
|
const V2_2FrameHeaderSize uint = 6 |
|
const V2_3FrameHeaderSize uint = 10 |
|
const V2_4FrameHeaderSize uint = V2_3FrameHeaderSize
|
|
|