From f9b93f3544ff9e795dc9867ff3a56ca1796910bd Mon Sep 17 00:00:00 2001 From: sletz Date: Sun, 7 Oct 2007 12:36:00 +0000 Subject: [PATCH] Cleanup git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1575 0c269be4-1314-0410-8aa9-9f06e86f4224 --- linux/freebob/JackFreebobDriver.cpp | 29 ----------------------------- linux/freebob/JackFreebobDriver.h | 2 -- 2 files changed, 31 deletions(-) diff --git a/linux/freebob/JackFreebobDriver.cpp b/linux/freebob/JackFreebobDriver.cpp index eab1d01c..342f900b 100644 --- a/linux/freebob/JackFreebobDriver.cpp +++ b/linux/freebob/JackFreebobDriver.cpp @@ -957,37 +957,8 @@ JackFreebobDriver::jack_driver_nt_init (jack_driver_nt_t * driver) driver->nt_run_cycle = 0; } -void JackFreebobDriver::PrintState() -{ - std::cout << "JackFreebobDriver State" << std::endl; - - int port_index; - - std::cout << "Input ports" << std::endl; - - for (int i = 0; i < fPlaybackChannels; i++) { - port_index = fCapturePortList[i]; - JackPort* port = fGraphManager->GetPort(port_index); - std::cout << port->GetName() << std::endl; - //if (fGraphManager->IsConnected(port_index)) {} - if (fGraphManager->GetConnectionsNum(port_index)) {} - } - - std::cout << "Output ports" << std::endl; - - for (int i = 0; i < fCaptureChannels; i++) { - port_index = fPlaybackPortList[i]; - JackPort* port = fGraphManager->GetPort(port_index); - std::cout << port->GetName() << std::endl; - //if (fGraphManager->IsConnected(port_index)) {} - if (fGraphManager->GetConnectionsNum(port_index)) {} - } -} - - } // end of namespace - #ifdef __cplusplus extern "C" { diff --git a/linux/freebob/JackFreebobDriver.h b/linux/freebob/JackFreebobDriver.h index 167b1cc6..25135992 100644 --- a/linux/freebob/JackFreebobDriver.h +++ b/linux/freebob/JackFreebobDriver.h @@ -88,8 +88,6 @@ class JackFreebobDriver : public JackAudioDriver int Write(); int SetBufferSize(jack_nframes_t nframes); - - void PrintState(); }; } // end of namespace