|  | 
Read the VORBIS_COMMENT metadata block of the given FLAC file. This function will skip any ID3v2 tag at the head of the file. 
Parameters: 
| filename | The path to the FLAC file to read. |  | tags | The address where the returned pointer will be stored. The tags object must be deleted by the caller using FLAC__metadata_object_delete(). | 
 
Assertions:
   
 
Return values: 
| FLAC__bool | trueif a valid VORBIS_COMMENT block was read from filename, and *tags will be set to the address of the tag structure. Returnsfalseif there was a memory allocation error, a file decoder error, or the file contained no VORBIS_COMMENT block, and *tags will be set toNULL. | 
 |