-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTODO
29 lines (21 loc) · 954 Bytes
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
PyJack
TODO Items
---------------------------------------------
- Make variable buffering within the PyJack client independent of the
Jack server's buffer size; this would enable the PyJack client to run
jack.process with larger buffers while still working with apps which
require small buffers.
- May need a select call with timeout in jack.process()
Otherwise, if the jack server shutsdown or SIGHUPS this call might
wait forever on the socket read.
- Monitoring?
I don't really understand how monitoring is supposed to work.
- Do we need sample rate events?
Will the sample rate ever change in the middle of a process,
or is it a fixed value like buffer size?
Answer: while buffer size can change in a running jack instance,
sample rate will never change; so we don't need a sr events.
(but we might want buffer size events)
- Ability to remove callbacks
- Peak/Power monitoring
Contributions are welcome!