OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tell_func
(Results
1 - 6
of
6
) sorted by null
/external/libvorbis/doc/vorbisfile/
ov_callbacks.html
42
long (*
tell_func
) (void *datasource);
53
<dd>Pointer to custom data seeking function. If the data source is not seekable (or the application wants the data source to be treated as unseekable at all times), the provided seek callback should always return -1 (failure) or the <tt>seek_func</tt> and <tt>
tell_func
</tt> fields should be set to NULL.</dd>
56
<dt><i>
tell_func
</i></dt>
57
<dd>Pointer to custom data location function. If the data source is not seekable (or the application wants the data source to be treated as unseekable at all times), the provided tell callback should always return -1 (failure) or the <tt>seek_func</tt> and <tt>
tell_func
</tt> fields should be set to NULL.</dd>
83
A set of callbacks that set <tt>seek_func</tt> and <tt>
tell_func
</tt>
callbacks.html
56
<tt>seek_func</tt> and <tt>
tell_func
</tt> should be set to NULL. If
104
behavior. In this case, the <tt>
tell_func
</tt> and <tt>seek_func</tt>
/external/libvorbis/include/vorbis/
vorbisfile.h
43
long (*
tell_func
) (void *datasource);
member in struct:__anon16377
/external/tremolo/Tremolo/
ivorbisfile.h
63
long (*
tell_func
) (void *datasource);
member in struct:__anon23503
vorbisfile.c
513
vf->offset=vf->end=(vf->callbacks.
tell_func
)(vf->datasource);
[
all
...]
/external/libvorbis/lib/
vorbisfile.c
625
if(vf->callbacks.seek_func && vf->callbacks.
tell_func
){
627
vf->offset=vf->end=(vf->callbacks.
tell_func
)(vf->datasource);
632
/* If seek_func is implemented,
tell_func
must also be implemented */
[
all
...]
Completed in 230 milliseconds