Lines Matching refs:ibytes
721 long ibytes, ov_callbacks callbacks){ in _ov_open1() argument
742 unsigned char *buffer=ogg_sync_bufferin(vf->oy,ibytes); in _ov_open1()
743 memcpy(buffer,initial,ibytes); in _ov_open1()
744 ogg_sync_wrote(vf->oy,ibytes); in _ov_open1()
810 int ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, in ov_open_callbacks() argument
812 int ret=_ov_open1(f,vf,initial,ibytes,callbacks); in ov_open_callbacks()
817 int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes){ in ov_open() argument
825 return ov_open_callbacks((void *)f, vf, initial, ibytes, callbacks); in ov_open()
833 int ov_test_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, in ov_test_callbacks() argument
836 return _ov_open1(f,vf,initial,ibytes,callbacks); in ov_test_callbacks()
839 int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes){ in ov_test() argument
847 return ov_test_callbacks((void *)f, vf, initial, ibytes, callbacks); in ov_test()