/external/tremolo/Tremolo/ |
treminfo.c | 84 if(!tagcompare(vc->user_comments[i], fulltag, taglen)){ 87 return vc->user_comments[i] + taglen; 103 if(!tagcompare(vc->user_comments[i], fulltag, taglen)) 114 if(vc->user_comments[i])_ogg_free(vc->user_comments[i]); 115 if(vc->user_comments)_ogg_free(vc->user_comments); 225 vc->user_comments=(char **)_ogg_calloc(vc->comments+1,sizeof(*vc->user_comments)); 226 if (!vc->user_comments){ [all...] |
ivorbiscodec.h | 80 char **user_comments; member in struct:vorbis_comment
|
/external/libvorbis/lib/ |
info.c | 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){ [all...] |
/external/libvorbis/examples/ |
vorbisfile_example.c | 55 char **ptr=ov_comment(&vf,-1)->user_comments;
|
decoder_example.c | 188 char **ptr=vc.user_comments;
|
/external/libvorbis/include/vorbis/ |
codec.h | 143 char **user_comments; member in struct:vorbis_comment
|
/frameworks/av/media/libstagefright/ |
OggExtractor.cpp | 777 const char *comment = mVc.user_comments[i]; 780 //ALOGI("comment #%d: '%s'", i + 1, mVc.user_comments[i]);
|