Lines Matching refs:comments
144 for (i = 0; i < vc->comments; i++) in startread()
145 sox_append_comment(&ft->oob.comments, vc->user_comments[i]); in startread()
259 vc.comments = sox_num_comments(ft->oob.comments); in write_vorbis_header()
260 if (vc.comments) { /* Make the comment structure */ in write_vorbis_header()
261 vc.comment_lengths = lsx_calloc((size_t)vc.comments, sizeof(*vc.comment_lengths)); in write_vorbis_header()
262 vc.user_comments = lsx_calloc((size_t)vc.comments, sizeof(*vc.user_comments)); in write_vorbis_header()
263 for (i = 0; i < vc.comments; ++i) { in write_vorbis_header()
265 char * text = lsx_calloc(strlen(prepend) + strlen(ft->oob.comments[i]) + 1, sizeof(*text)); in write_vorbis_header()
267 if (!strchr(ft->oob.comments[i], '=')) in write_vorbis_header()
269 vc.user_comments[i] = strcat(text, ft->oob.comments[i]); in write_vorbis_header()
287 for (i = 0; i < vc.comments; ++i) in write_vorbis_header()