struct.pack wants H for unsigned shorts, not h.
This commit is contained in:
parent
e56e87dcc8
commit
e396c04832
|
@ -56,7 +56,7 @@ class Play_Audio_mac:
|
||||||
if self._sampwidth == 1:
|
if self._sampwidth == 1:
|
||||||
import audioop
|
import audioop
|
||||||
data = audioop.add(data, '\x80'*len(data), 1)
|
data = audioop.add(data, '\x80'*len(data), 1)
|
||||||
h1 = struct.pack('llhhllbbl',
|
h1 = struct.pack('llHhllbbl',
|
||||||
id(data)+MacOS.string_id_to_buffer,
|
id(data)+MacOS.string_id_to_buffer,
|
||||||
self._nchannels,
|
self._nchannels,
|
||||||
self._outrate, 0,
|
self._outrate, 0,
|
||||||
|
|
Loading…
Reference in New Issue