#include <JackPort.h>
Public Member Functions | |
JackOutput (const string &name) | |
~JackOutput () | |
Protected Member Functions | |
void | Process (jack_nframes_t samples) |
Definition at line 83 of file JackPort.h.
JackOutput::JackOutput | ( | const string & | name | ) |
JackOutput::~JackOutput | ( | ) |
void JackOutput::Process | ( | jack_nframes_t | samples | ) | [protected, virtual] |
Reimplemented from ISoundElement.
Definition at line 155 of file JackPort.cpp.
References ISoundElement::GetPipe(), JackAudioPort::PutFrame(), and SoundFrame::Zero().
00156 { 00157 GetPipe().Zero(); 00158 ISoundElement::Process(count); 00159 //cout << GetPipe() << endl; 00160 PutFrame(GetPipe()); 00161 }