Home
last modified time | relevance | path

Searched refs:new_num_comments (Results 1 – 2 of 2) sorted by relevance

/external/flac/libFLAC/
Dmetadata_object.c1165 …adata_object_vorbiscomment_resize_comments(FLAC__StreamMetadata *object, unsigned new_num_comments) in FLAC__metadata_object_vorbiscomment_resize_comments() argument
1172 if (new_num_comments == 0) in FLAC__metadata_object_vorbiscomment_resize_comments()
1174 …else if ((object->data.vorbis_comment.comments = vorbiscomment_entry_array_new_(new_num_comments))… in FLAC__metadata_object_vorbiscomment_resize_comments()
1179 const size_t new_size = new_num_comments * sizeof(FLAC__StreamMetadata_VorbisComment_Entry); in FLAC__metadata_object_vorbiscomment_resize_comments()
1182 if (new_num_comments > UINT32_MAX / sizeof(FLAC__StreamMetadata_VorbisComment_Entry)) in FLAC__metadata_object_vorbiscomment_resize_comments()
1188 if (new_num_comments < object->data.vorbis_comment.num_comments) { in FLAC__metadata_object_vorbiscomment_resize_comments()
1190 for (i = new_num_comments; i < object->data.vorbis_comment.num_comments; i++) in FLAC__metadata_object_vorbiscomment_resize_comments()
1213 object->data.vorbis_comment.num_comments = new_num_comments; in FLAC__metadata_object_vorbiscomment_resize_comments()
/external/flac/include/FLAC/
Dmetadata.h1606 …data_object_vorbiscomment_resize_comments(FLAC__StreamMetadata *object, unsigned new_num_comments);