diff options
author | Guenter Geiger <ggeiger@users.sourceforge.net> | 2004-02-02 14:31:34 +0000 |
---|---|---|
committer | Guenter Geiger <ggeiger@users.sourceforge.net> | 2004-02-02 14:31:34 +0000 |
commit | 64c61824dc8bc2a83c03cd609bea77f374b6cfe5 (patch) | |
tree | b4b1af154b0ab3eae382b2d9dd5b6304b0bb1030 /pd/src/s_audio_jack.c | |
parent | e3f67bd77b72fbaeb643792a2d1f9decddbccbbe (diff) |
merged with version_0_37_1test6
svn path=/trunk/; revision=1310
Diffstat (limited to 'pd/src/s_audio_jack.c')
-rw-r--r-- | pd/src/s_audio_jack.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pd/src/s_audio_jack.c b/pd/src/s_audio_jack.c index 6f9937db..e9d8fcb5 100644 --- a/pd/src/s_audio_jack.c +++ b/pd/src/s_audio_jack.c @@ -54,13 +54,13 @@ process (jack_nframes_t nframes, void *arg) } jack_filled -= nframes; } else { /* PD could not keep up ! */ - if (jack_started) sys_log_error(ERR_RESYNC); - for (j = 0; j < sys_outchannels; j++) { - out = jack_port_get_buffer (output_port[j], nframes); - memset(out, 0, sizeof (float) * nframes); - } - memset(jack_outbuf,0,sizeof(jack_outbuf)); - jack_filled = 0; + if (jack_started) sys_log_error(ERR_RESYNC); + for (j = 0; j < outport_count; j++) { + out = jack_port_get_buffer (output_port[j], nframes); + memset(out, 0, sizeof (float) * nframes); + } + memset(jack_outbuf,0,sizeof(jack_outbuf)); + jack_filled = 0; } pthread_cond_broadcast(&jack_sem); return 0; |