FLAC application metadata tag structure.
typedef struct {
char id[4];
DWORD length;
void *data;
} TAG_FLAC_METADATA;
| id | The application ID. A list of registered IDs is available at: www.xiph.org/flac/id.html |
| length | The size of data in bytes. |
| data | The metadata. |