mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
remove non rt-safe debug messages
This commit is contained in:
parent
471644c59d
commit
ea64e46594
1 changed files with 0 additions and 10 deletions
|
|
@ -68,11 +68,6 @@ AudioPort::cycle_start (pframes_t nframes)
|
|||
_src.set_rratio (_cycle_nframes / (double)nframes);
|
||||
_src.out_data = _data;
|
||||
_src.process ();
|
||||
#ifndef NDEBUG
|
||||
if (_src.inp_count != 0 || _src.out_count != 0) {
|
||||
printf ("AudioPort::cycle_start x-flow: %d/%d\n", _src.inp_count, _src.out_count);
|
||||
}
|
||||
#endif
|
||||
while (_src.out_count > 0) {
|
||||
*_src.out_data = _src.out_data[-1];
|
||||
++_src.out_data;
|
||||
|
|
@ -108,11 +103,6 @@ AudioPort::cycle_end (pframes_t nframes)
|
|||
_src.inp_data = _data;
|
||||
_src.out_data = (float*)port_engine.get_buffer (_port_handle, nframes);
|
||||
_src.process ();
|
||||
#ifndef NDEBUG
|
||||
if (_src.inp_count != 0 || _src.out_count != 0) {
|
||||
printf ("AudioPort::cycle_end x-flow: %d/%d\n", _src.inp_count, _src.out_count);
|
||||
}
|
||||
#endif
|
||||
while (_src.out_count > 0) {
|
||||
*_src.out_data = _src.out_data[-1];
|
||||
++_src.out_data;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue