summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-03-20 05:21:58 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2006-03-20 05:21:58 (GMT)
commitfa86907aae0178ae93df4e7df3629df748f462b5 (patch)
tree4e64f74689a6f6921e497ab038626ca10ef90049 /Misc
parentd1e0ef68fb3b92b4c54cbb614d521e28078f4788 (diff)
downloadcpython-fa86907aae0178ae93df4e7df3629df748f462b5.zip
cpython-fa86907aae0178ae93df4e7df3629df748f462b5.tar.gz
cpython-fa86907aae0178ae93df4e7df3629df748f462b5.tar.bz2
SF [ 1231053 ] audioop - alaw encoding/decoding added, code updated
This patch adds a-LAW encoding to audioop and replaces the old u-LAW encoding/decoding code with the current code from sox. Possible issues: the code from sox uses int16_t. Code by Lars Immisch
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a9667e3..8069142 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -295,6 +295,9 @@ Core and builtins
Extension Modules
-----------------
+- Patch #1231053: The audioop module now supports encoding/decoding of alaw.
+ In addition, the existing ulaw code was updated.
+
- RFE #567972: Socket objects' family, type and proto properties are
now exposed via new get...() methods.