projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
58779e3
)
ext/jackio.c: write to ochan output buffers, not ichan
author
Paul Brossier
<piem@piem.org>
Fri, 25 Sep 2009 03:21:54 +0000
(
05:21
+0200)
committer
Paul Brossier
<piem@piem.org>
Fri, 25 Sep 2009 03:21:54 +0000
(
05:21
+0200)
ext/jackio.c
patch
|
blob
|
history
diff --git
a/ext/jackio.c
b/ext/jackio.c
index 667a6bce013054e72941933d28be377be3c92b84..f6be7503fdee90ddd964eb377dc79456953d6847 100644
(file)
--- a/
ext/jackio.c
+++ b/
ext/jackio.c
@@
-211,7
+211,7
@@
aubio_jack_process (jack_nframes_t nframes, void *arg)
}
dev->callback (dev->sibufs, dev->sobufs, nframes);
for (j = 0; j < MIN (nframes, AUBIO_JACK_MAX_FRAMES); j++) {
- for (i = 0; i < dev->
i
chan; i++) {
+ for (i = 0; i < dev->
o
chan; i++) {
dev->obufs[i][j] = (jack_sample_t) dev->sobufs[i][j];
}
}