Browse Source

Cleanup

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1570 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.67
sletz 18 years ago
parent
commit
942c48f527
2 changed files with 0 additions and 27 deletions
  1. +0
    -25
      linux/alsa/JackAlsaDriver.cpp
  2. +0
    -2
      linux/alsa/JackAlsaDriver.h

+ 0
- 25
linux/alsa/JackAlsaDriver.cpp View File

@@ -2287,31 +2287,6 @@ JackAlsaDriver::jack_driver_nt_init (jack_driver_nt_t * driver)
driver->nt_run_cycle = 0;
}

void JackAlsaDriver::PrintState()
{
std::cout << "JackAlsaDriver 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->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->GetConnectionsNum(port_index)) {}
}
}

} // end of namespace




+ 0
- 2
linux/alsa/JackAlsaDriver.h View File

@@ -150,8 +150,6 @@ class JackAlsaDriver : public JackAudioDriver
int Write();

int SetBufferSize(jack_nframes_t nframes);

void PrintState();
};

} // end of namespace


Loading…
Cancel
Save