Vorbisfile documentation

vorbisfile version 1.3.2 - 20101101

Callbacks and non-stdio I/O

Although stdio is convenient and nearly universally implemented as per ANSI C, it is not suited to all or even most potential uses of Vorbis. For additional flexibility, embedded applications may provide their own I/O functions for use with Vorbisfile when stdio is unavailable or not suitable. One common example is decoding a Vorbis stream from a memory buffer.

Use custom I/O functions by populating an ov_callbacks structure and calling ov_open_callbacks() or ov_test_callbacks() rather than the typical ov_open() or ov_test(). Past the open call, use of libvorbisfile is identical to using it with stdio.

Read function

The read-like function provided in the read_func field is used to fetch the requested amount of data. It expects the fetch operation to function similar to file-access, that is, a multiple read operations will retrieve contiguous sequential pieces of data, advancing a position cursor after each read.

The following behaviors are also expected:

Seek function

The seek-like function provided in the seek_func field is used to request non-sequential data access by libvorbisfile, moving the access cursor to the requested position. The seek function is optional; if callbacks are only to handle non-seeking (streaming) data or the application wishes to force streaming behavior, seek_func and tell_func should be set to NULL. If the seek function is non-NULL, libvorbisfile mandates the following behavior:

Close function

The close function should deallocate any access state used by the passed in instance of the data access abstraction and invalidate the instance handle. The close function is assumed to succeed; its return code is not checked.

The close_func may be set to NULL to indicate that libvorbis should not attempt to close the file/data handle in ov_clear but allow the application to handle file/data access cleanup itself. For example, by passing the normal stdio calls as callback functions, but passing a close_func that is NULL or does nothing (as in the case of OV_CALLBACKS_NOCLOSE), an application may call ov_clear() and then later fclose() the file originally passed to libvorbisfile.

Tell function

The tell function is intended to mimic the behavior of ftell() and must return the byte position of the next data byte that would be read. If the data access cursor is at the end of the 'file' (pointing to one past the last byte of data, as it would be after calling fseek(file,SEEK_END,0)), the tell function must return the data position (and thus the total file size), not an error.

The tell function need not be provided if the data IO abstraction is not seekable, or the application wishes to force streaming behavior. In this case, the tell_func and seek_func fields should be set to NULL.




copyright © 2000-2010 Xiph.Org

Ogg Vorbis

Vorbisfile documentation

vorbisfile version 1.3.2 - 20101101