Home
last modified time | relevance | path

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

/external/flac/src/libFLAC/
Dmetadata_object.c1165 …adata_object_vorbiscomment_resize_comments(FLAC__StreamMetadata *object, uint32_t 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, uint32_t new_num_comments);
/external/flac/src/libFLAC++/
Dmetadata.cpp902 bool VorbisComment::resize_comments(uint32_t new_num_comments) in resize_comments() argument
905 …tatic_cast<bool>(::FLAC__metadata_object_vorbiscomment_resize_comments(object_, new_num_comments)); in resize_comments()
/external/flac/include/FLAC++/
Dmetadata.h694 bool resize_comments(uint32_t new_num_comments);