OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:seek_func
(Results
1 - 2
of
2
) sorted by null
/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:__anon4286
/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 564 milliseconds