HomeSort by relevance Sort by last modified time
    Searched refs:seek_func (Results 1 - 4 of 4) sorted by null

  /external/tremolo/Tremolo/
ivorbisfile.h 56 * the right values. For seek_func(), you *MUST* return -1 if the stream is
61 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence); member in struct:__anon35294
vorbisfile.c 106 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET);
512 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END);
722 int offsettest=(f?callbacks.seek_func(f,0,SEEK_CUR):-1);
    [all...]
  /external/libvorbis/include/vorbis/
vorbisfile.h 36 * the right values. For seek_func(), you *MUST* return -1 if the stream is
41 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence); member in struct:__anon28536
  /external/libvorbis/lib/
vorbisfile.c 83 if(!(vf->callbacks.seek_func)||
84 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET) == -1)
625 if(vf->callbacks.seek_func && vf->callbacks.tell_func){
626 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END);
632 /* If seek_func is implemented, tell_func must also be implemented */
874 int offsettest=((f && callbacks.seek_func)?callbacks.seek_func(f,0,SEEK_CUR):-1);
    [all...]

Completed in 294 milliseconds