namespace CUETools.Codecs.Flake { public enum MetadataType { /// /// STREAMINFO block /// StreamInfo = 0, /// /// PADDING block /// Padding = 1, /// /// APPLICATION block /// Application = 2, /// /// SEEKTABLE block /// Seektable = 3, /// /// VORBISCOMMENT block (a.k.a. FLAC tags) /// VorbisComment = 4, /// /// CUESHEET block /// CUESheet = 5, /// /// PICTURE block /// Picture = 6, /// /// marker to denote beginning of undefined type range; this number will increase as new metadata types are added /// Undefined = 7 } }