mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
cleanup startup prints and blank lines
This commit is contained in:
parent
f10fb8430d
commit
394ced7f33
2 changed files with 0 additions and 12 deletions
|
@ -364,8 +364,6 @@ Gui::Gui(const char* argZero) :
|
||||||
diskReader( new DiskReader() ),
|
diskReader( new DiskReader() ),
|
||||||
diskWriter( new DiskWriter() )
|
diskWriter( new DiskWriter() )
|
||||||
{
|
{
|
||||||
LUPPP_NOTE( "%s", "Gui()" );
|
|
||||||
|
|
||||||
gui = this;
|
gui = this;
|
||||||
|
|
||||||
// setup window icon before calling show()
|
// setup window icon before calling show()
|
||||||
|
@ -488,8 +486,6 @@ Gui::Gui(const char* argZero) :
|
||||||
nsm_free( nsm );
|
nsm_free( nsm );
|
||||||
nsm = 0;
|
nsm = 0;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
LUPPP_NOTE("No session management in use");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -84,8 +84,6 @@ Jack::Jack( std::string name ) :
|
||||||
lastnframes=0;
|
lastnframes=0;
|
||||||
samplerate = jack_get_sample_rate( client );
|
samplerate = jack_get_sample_rate( client );
|
||||||
|
|
||||||
LUPPP_NOTE("Samplerate %i", samplerate );
|
|
||||||
|
|
||||||
// construct Observer classes here, not in the initializer list as the Jack*
|
// construct Observer classes here, not in the initializer list as the Jack*
|
||||||
// will be 0x0 until then.
|
// will be 0x0 until then.
|
||||||
timeManager = new TimeManager(),
|
timeManager = new TimeManager(),
|
||||||
|
@ -203,13 +201,10 @@ Jack::Jack( std::string name ) :
|
||||||
tracksendreturns.push_back(new JackSendReturn(i,loopers.back(),client));
|
tracksendreturns.push_back(new JackSendReturn(i,loopers.back(),client));
|
||||||
trackOutputs.push_back( new TrackOutput(i, tracksendreturns.back() ) );
|
trackOutputs.push_back( new TrackOutput(i, tracksendreturns.back() ) );
|
||||||
|
|
||||||
|
|
||||||
buffers.audio[Buffers::TRACK_0 + i] = new float[ buffers.nframes ];
|
buffers.audio[Buffers::TRACK_0 + i] = new float[ buffers.nframes ];
|
||||||
buffers.audio[Buffers::SEND_TRACK_0+i]=new float[buffers.nframes];
|
buffers.audio[Buffers::SEND_TRACK_0+i]=new float[buffers.nframes];
|
||||||
buffers.audio[Buffers::RETURN_TRACK_0+i]=new float[buffers.nframes];
|
buffers.audio[Buffers::RETURN_TRACK_0+i]=new float[buffers.nframes];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
timeManager->registerObserver( loopers.back() );
|
timeManager->registerObserver( loopers.back() );
|
||||||
if(gui->enablePerTrackOutput) {
|
if(gui->enablePerTrackOutput) {
|
||||||
char name[50];
|
char name[50];
|
||||||
|
@ -433,7 +428,6 @@ int Jack::process (jack_nframes_t nframes)
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/// update "time" from JACK master, or write master?
|
/// update "time" from JACK master, or write master?
|
||||||
buffers.transportFrame = jack_get_current_transport_frame(client);
|
buffers.transportFrame = jack_get_current_transport_frame(client);
|
||||||
|
|
||||||
|
@ -482,7 +476,6 @@ void Jack::processFrames(int nframes)
|
||||||
float returnL = buffers.audio[Buffers::MASTER_RETURN_L][i];
|
float returnL = buffers.audio[Buffers::MASTER_RETURN_L][i];
|
||||||
float returnR = buffers.audio[Buffers::MASTER_RETURN_R][i];
|
float returnR = buffers.audio[Buffers::MASTER_RETURN_R][i];
|
||||||
|
|
||||||
|
|
||||||
if ( inputToMixEnable ) {
|
if ( inputToMixEnable ) {
|
||||||
// if sending to mix, scale by volume *and* by XSide send
|
// if sending to mix, scale by volume *and* by XSide send
|
||||||
float tmp = input * inputToMixVol * (1-inputToXSideVol);
|
float tmp = input * inputToMixVol * (1-inputToXSideVol);
|
||||||
|
@ -497,7 +490,6 @@ void Jack::processFrames(int nframes)
|
||||||
buffers.audio[Buffers::SIDECHAIN_KEY][i] += input;
|
buffers.audio[Buffers::SIDECHAIN_KEY][i] += input;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
buffers.audio[Buffers::SIDECHAIN_SIGNAL][i] += input * inputToXSideVol;
|
buffers.audio[Buffers::SIDECHAIN_SIGNAL][i] += input * inputToXSideVol;
|
||||||
|
|
||||||
//compute master volume lag;
|
//compute master volume lag;
|
||||||
|
|
Loading…
Add table
Reference in a new issue