diff options
author | Fred Drake <fdrake@acm.org> | 2000-11-17 19:05:12 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-11-17 19:05:12 (GMT) |
commit | 2ed27d3189783966a915181f9013b808a20d2c6b (patch) | |
tree | c6fc8387131445c46ae623e02b98840411cc8aa7 /Doc/lib/libsunau.tex | |
parent | aa126e1e21e837678310c456a0f656276106ec03 (diff) | |
download | cpython-2ed27d3189783966a915181f9013b808a20d2c6b.zip cpython-2ed27d3189783966a915181f9013b808a20d2c6b.tar.gz cpython-2ed27d3189783966a915181f9013b808a20d2c6b.tar.bz2 |
Note that readframes() returns data in linear format, even if the original
is encoded in u-LAW format. Based on suggestion from Anthony Baxter
<anthony_baxter@users.sourceforge.net>.
This closes bug #122273.
Diffstat (limited to 'Doc/lib/libsunau.tex')
-rw-r--r-- | Doc/lib/libsunau.tex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/lib/libsunau.tex b/Doc/lib/libsunau.tex index e0db04d..58aa460 100644 --- a/Doc/lib/libsunau.tex +++ b/Doc/lib/libsunau.tex @@ -127,7 +127,9 @@ equivalent to output of the \method{get*()} methods. \end{methoddesc} \begin{methoddesc}[AU_read]{readframes}{n} -Reads and returns at most \var{n} frames of audio, as a string of bytes. +Reads and returns at most \var{n} frames of audio, as a string of +bytes. The data will be returned in linear format. If the original +data is in u-LAW format, it will be converted. \end{methoddesc} \begin{methoddesc}[AU_read]{rewind}{} |