mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
remove debugging output from audioengine/port code
git-svn-id: svn://localhost/ardour2/branches/3.0@9383 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7035a21057
commit
5ebdcdf12e
1 changed files with 1 additions and 9 deletions
|
|
@ -353,9 +353,7 @@ int
|
||||||
AudioEngine::_graph_order_callback (void *arg)
|
AudioEngine::_graph_order_callback (void *arg)
|
||||||
{
|
{
|
||||||
AudioEngine* ae = static_cast<AudioEngine*> (arg);
|
AudioEngine* ae = static_cast<AudioEngine*> (arg);
|
||||||
if (ae->port_remove_in_progress) {
|
|
||||||
cerr << "skip reorder callback - PRiP\n";
|
|
||||||
}
|
|
||||||
if (ae->connected() && !ae->port_remove_in_progress) {
|
if (ae->connected() && !ae->port_remove_in_progress) {
|
||||||
ae->GraphReordered (); /* EMIT SIGNAL */
|
ae->GraphReordered (); /* EMIT SIGNAL */
|
||||||
}
|
}
|
||||||
|
|
@ -390,9 +388,6 @@ AudioEngine::_registration_callback (jack_port_id_t /*id*/, int /*reg*/, void* a
|
||||||
{
|
{
|
||||||
AudioEngine* ae = static_cast<AudioEngine*> (arg);
|
AudioEngine* ae = static_cast<AudioEngine*> (arg);
|
||||||
|
|
||||||
if (ae->port_remove_in_progress) {
|
|
||||||
cerr << "skip registration callback - PRiP\n";
|
|
||||||
}
|
|
||||||
if (!ae->port_remove_in_progress) {
|
if (!ae->port_remove_in_progress) {
|
||||||
ae->PortRegisteredOrUnregistered (); /* EMIT SIGNAL */
|
ae->PortRegisteredOrUnregistered (); /* EMIT SIGNAL */
|
||||||
}
|
}
|
||||||
|
|
@ -410,7 +405,6 @@ AudioEngine::_connect_callback (jack_port_id_t id_a, jack_port_id_t id_b, int co
|
||||||
AudioEngine* ae = static_cast<AudioEngine*> (arg);
|
AudioEngine* ae = static_cast<AudioEngine*> (arg);
|
||||||
|
|
||||||
if (ae->port_remove_in_progress) {
|
if (ae->port_remove_in_progress) {
|
||||||
cerr << "skip connect callback - PRiP\n";
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -468,7 +462,6 @@ AudioEngine::process_thread ()
|
||||||
pframes_t nframes = jack_cycle_wait (_priv_jack);
|
pframes_t nframes = jack_cycle_wait (_priv_jack);
|
||||||
|
|
||||||
if (process_callback (nframes)) {
|
if (process_callback (nframes)) {
|
||||||
cerr << "--- process\n";
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1230,7 +1223,6 @@ void
|
||||||
AudioEngine::transport_locate (framepos_t where)
|
AudioEngine::transport_locate (framepos_t where)
|
||||||
{
|
{
|
||||||
GET_PRIVATE_JACK_POINTER (_jack);
|
GET_PRIVATE_JACK_POINTER (_jack);
|
||||||
// cerr << "tell JACK to locate to " << where << endl;
|
|
||||||
jack_transport_locate (_priv_jack, where);
|
jack_transport_locate (_priv_jack, where);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue