Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
52a40ac0
Commit
52a40ac0
authored
Mar 18, 1996
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added option to set queue size
parent
dca8788d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
Mac/Lib/Audio_mac.py
Mac/Lib/Audio_mac.py
+4
-3
No files found.
Mac/Lib/Audio_mac.py
View file @
52a40ac0
QSIZE
=
100000
error
=
'Audio_mac.error'
class
Play_Audio_mac
:
def
__init__
(
self
):
def
__init__
(
self
,
qsize
=
QSIZE
):
self
.
_chan
=
None
self
.
_qsize
=
QSIZE
self
.
_qsize
=
qsize
self
.
_outrate
=
22254
self
.
_sampwidth
=
1
self
.
_nchannels
=
1
...
...
@@ -46,7 +47,7 @@ class Play_Audio_mac:
self
.
_chan
=
Snd
.
SndNewChannel
(
5
,
0
,
self
.
_callback
)
nframes
=
len
(
data
)
/
self
.
_nchannels
/
self
.
_sampwidth
if
len
(
data
)
!=
nframes
*
self
.
_nchannels
*
self
.
_sampwidth
:
raise
ValueE
rror
,
'data is not a whole number of frames'
raise
e
rror
,
'data is not a whole number of frames'
while
self
.
_gc
and
\
self
.
getfilled
()
+
nframes
>
\
self
.
_qsize
/
self
.
_nchannels
/
self
.
_sampwidth
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment