Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:vorbis_comment

747 	/* reorder metadata if necessary to ensure that any VORBIS_COMMENT is the first, according to the mapping spec */
1180 encoder->private_->streaminfo.is_last = false; /* we will have at a minimum a VORBIS_COMMENT afterwards */
1211 * Check to see if the supplied metadata contains a VORBIS_COMMENT;
1221 FLAC__StreamMetadata vorbis_comment;
1222 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT;
1223 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0);
1224 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */
1225 vorbis_comment.data.vorbis_comment.vendor_string.length = 0;
1226 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0;
1227 vorbis_comment.data.vorbis_comment.num_comments = 0;
1228 vorbis_comment.data.vorbis_comment.comments = 0;
1229 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame)) {