Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:num_comments

1537 					if(block.data.vorbis_comment.num_comments > 0)
1538 for(i = 0; i < block.data.vorbis_comment.num_comments; i++)
1730 if (!FLAC__bitreader_read_uint32_little_endian(decoder->private_->input, &obj->num_comments))
1734 if (obj->num_comments > 100000) {
1736 obj->num_comments = 0;
1739 if (obj->num_comments > 0) {
1740 if (0 == (obj->comments = safe_malloc_mul_2op_p(obj->num_comments, /*times*/sizeof(FLAC__StreamMetadata_VorbisComment_Entry)))) {
1741 obj->num_comments = 0;
1743 obj->num_comments = 0;
1746 for (i = 0; i < obj->num_comments; i++) {
1753 obj->num_comments = i;
1759 obj->num_comments = i;
1764 obj->num_comments = i;
1775 obj->num_comments = i;
1789 if(obj->num_comments < 1) {