Home | History | Annotate | Download | only in Tremolo

Lines Matching refs:initial

202    (has to begin by knowing the offset of the lb's initial page).
302 /* extract the initial header from the first page and verify that the
389 /* we already grabbed the initial header earlier. Just set the offset */
395 /* seek to the location of the initial header */
537 /* the initial header memory is referenced by vf after; don't free it */
720 static int _ov_open1(void *f,OggVorbis_File *vf,char *initial,
741 if(initial){
743 memcpy(buffer,initial,ibytes);
810 int ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes,
812 int ret=_ov_open1(f,vf,initial,ibytes,callbacks);
817 int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes){
825 return ov_open_callbacks((void *)f, vf, initial, ibytes, callbacks);
833 int ov_test_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes,
836 return _ov_open1(f,vf,initial,ibytes,callbacks);
839 int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes){
847 return ov_test_callbacks((void *)f, vf, initial, ibytes, callbacks);