From: Mike Smith Date: Sun, 21 Jul 2002 01:35:21 +0000 (+0000) Subject: Doc fixes for changed ov_read_float() X-Git-Tag: v1.3.3~680 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46dd1c7fc2a45bd370df5487932127df0594f057;p=platform%2Fupstream%2Flibvorbis.git Doc fixes for changed ov_read_float() svn path=/trunk/vorbis/; revision=3702 --- diff --git a/doc/vorbisfile/ov_read_float.html b/doc/vorbisfile/ov_read_float.html index 041911c..47ea2a5 100644 --- a/doc/vorbisfile/ov_read_float.html +++ b/doc/vorbisfile/ov_read_float.html @@ -30,7 +30,7 @@

-long ov_read(OggVorbis_File *vf, float ***pcm_channels, int *bitstream);
+long ov_read_float(OggVorbis_File *vf, float ***pcm_channels, int samples, int *bitstream);
 
@@ -43,6 +43,9 @@ long ov_read(OggVorbis_File *vf, float ***pcm_ functions.
pcm_channels
A pointer to an output buffer. The pointer will be set to the decoded output buffer.
+
samples
+
Maximum number of decoded samples to produce.
+
bitstream
bitstream
A pointer to the number of the current logical bitstream.
@@ -71,10 +74,10 @@ functions.

Typical usage:

float **pcm; -bytes_read = ov_read_float(&vf,pcm,&current_section) +bytes_read = ov_read_float(&vf,pcm, 1024, &current_section)
-This decodes one packet's worth of float samples. +This decodes up to 1024 float samples.