summaryrefslogtreecommitdiff
path: root/tools/pcm2pdm.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/pcm2pdm.py')
-rw-r--r--tools/pcm2pdm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pcm2pdm.py b/tools/pcm2pdm.py
index 7cf05fb..f04f2ba 100644
--- a/tools/pcm2pdm.py
+++ b/tools/pcm2pdm.py
@@ -3,7 +3,7 @@ import soundfile
def second_order_delta_sigma(pcm):
# Normalize input XXX: remove normalization
- pcm = pcm / np.max(np.abs(pcm))
+ #pcm = pcm / np.max(np.abs(pcm))
n = len(pcm)
pdm = np.zeros(n, dtype=np.uint8)