Home | History | Annotate | Download | only in lib

Lines Matching refs:user_comments

66   vc->user_comments=_ogg_realloc(vc->user_comments,
67 (vc->comments+2)*sizeof(*vc->user_comments));
71 vc->user_comments[vc->comments]=_ogg_malloc(vc->comment_lengths[vc->comments]+1);
72 strcpy(vc->user_comments[vc->comments], comment);
74 vc->user_comments[vc->comments]=NULL;
107 if(!tagcompare(vc->user_comments[i], fulltag, taglen)){
110 return vc->user_comments[i] + taglen;
126 if(!tagcompare(vc->user_comments[i], fulltag, taglen))
136 if(vc->user_comments){
138 if(vc->user_comments[i])_ogg_free(vc->user_comments[i]);
139 _ogg_free(vc->user_comments);
251 vc->user_comments=_ogg_calloc(vc->comments+1,sizeof(*vc->user_comments));
259 vc->user_comments[i]=_ogg_calloc(len+1,1);
260 _v_readstring(opb,vc->user_comments[i],len);
478 if(vc->user_comments[i]){
480 _v_writestring(opb,vc->user_comments[i], vc->comment_lengths[i]);