Lines Matching refs:comment_num

1208 …bject_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMe…  in FLAC__metadata_object_vorbiscomment_set_comment()  argument
1211 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments); in FLAC__metadata_object_vorbiscomment_set_comment()
1215 …return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.comments[comment_num], &entry… in FLAC__metadata_object_vorbiscomment_set_comment()
1218 …ct_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMe… in FLAC__metadata_object_vorbiscomment_insert_comment() argument
1224 FLAC__ASSERT(comment_num <= object->data.vorbis_comment.num_comments); in FLAC__metadata_object_vorbiscomment_insert_comment()
1235 …&vc->comments[comment_num+1], &vc->comments[comment_num], sizeof(FLAC__StreamMetadata_VorbisCommen… in FLAC__metadata_object_vorbiscomment_insert_comment()
1236 vc->comments[comment_num].length = 0; in FLAC__metadata_object_vorbiscomment_insert_comment()
1237 vc->comments[comment_num].entry = 0; in FLAC__metadata_object_vorbiscomment_insert_comment()
1239 return FLAC__metadata_object_vorbiscomment_set_comment(object, comment_num, entry, copy); in FLAC__metadata_object_vorbiscomment_insert_comment()
1289 …C__metadata_object_vorbiscomment_delete_comment(FLAC__StreamMetadata *object, unsigned comment_num) in FLAC__metadata_object_vorbiscomment_delete_comment() argument
1295 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments); in FLAC__metadata_object_vorbiscomment_delete_comment()
1300 if(0 != vc->comments[comment_num].entry) in FLAC__metadata_object_vorbiscomment_delete_comment()
1301 free(vc->comments[comment_num].entry); in FLAC__metadata_object_vorbiscomment_delete_comment()
1304 …(&vc->comments[comment_num], &vc->comments[comment_num+1], sizeof(FLAC__StreamMetadata_VorbisComme… in FLAC__metadata_object_vorbiscomment_delete_comment()