Home
last modified time | relevance | path

Searched refs:seek_func (Results 1 – 4 of 4) sorted by relevance

/external/tremolo/Tremolo/
Divorbisfile.h61 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence); member
Dvorbisfile.c106 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET); in _seek_helper()
512 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END); in _open_seekable2()
722 int offsettest=(f?callbacks.seek_func(f,0,SEEK_CUR):-1); in _ov_open1()
/external/libvorbis/include/vorbis/
Dvorbisfile.h41 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence); member
/external/libvorbis/lib/
Dvorbisfile.c83 if(!(vf->callbacks.seek_func)|| in _seek_helper()
84 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET) == -1) in _seek_helper()
625 if(vf->callbacks.seek_func && vf->callbacks.tell_func){ in _open_seekable2()
626 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END); in _open_seekable2()
874 int offsettest=((f && callbacks.seek_func)?callbacks.seek_func(f,0,SEEK_CUR):-1); in _ov_open1()