Home | History | Annotate | Download | only in libFLAC

Lines Matching defs:vorbis_comment

775 	/* reorder metadata if necessary to ensure that any VORBIS_COMMENT
1055 encoder->private_->streaminfo.is_last = false; /* we will have at a minimum a VORBIS_COMMENT afterwards */
1086 * Check to see if the supplied metadata contains a VORBIS_COMMENT;
1096 FLAC__StreamMetadata vorbis_comment;
1097 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT;
1098 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0);
1099 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */
1100 vorbis_comment.data.vorbis_comment.vendor_string.length = 0;
1101 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0;
1102 vorbis_comment.data.vorbis_comment.num_comments = 0;
1103 vorbis_comment.data.vorbis_comment.comments = 0;
1104 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame)) {