From 46dd1c7fc2a45bd370df5487932127df0594f057 Mon Sep 17 00:00:00 2001
From: Mike Smith
Date: Sun, 21 Jul 2002 01:35:21 +0000
Subject: [PATCH] Doc fixes for changed ov_read_float()
svn path=/trunk/vorbis/; revision=3702
---
doc/vorbisfile/ov_read_float.html | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
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,¤t_section)
+bytes_read = ov_read_float(&vf,pcm, 1024, ¤t_section)
-This decodes one packet's worth of float samples.
+This decodes up to 1024 float samples.
--
2.7.4