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
333 B
12 lines
333 B
package v2 |
|
|
|
const HEADERIDENTIFIER string = "ID3" |
|
const HEADERSIZE int = 10 // bytes |
|
const HEADERMAXSIZE int = 268435456 // bytes (256 MB) |
|
const V2_2 string = "ID3v2.2" |
|
const V2_3 string = "ID3v2.3" |
|
const V2_4 string = "ID3v2.4" |
|
|
|
const V2_2FrameIDSize uint = 3 |
|
const V2_3FrameIDSize uint = 4 |
|
const V2_4FrameIDSize uint = 4
|
|
|