Indicate stereo status in term

This commit is contained in:
Charles J. Cliffe 2014-12-26 22:07:49 -05:00
parent 44602303a7
commit 591b03dc7d

View File

@ -162,8 +162,8 @@ void DemodulatorThread::threadMain() {
ati->channels = 2; ati->channels = 2;
ati->data.resize(num_audio_written*2); ati->data.resize(num_audio_written*2);
for (int i = 0; i < num_audio_written; i++) { for (int i = 0; i < num_audio_written; i++) {
ati->data[i*2] = (resampled_audio_output[i]-(resampled_audio_output_stereo[i]*2.0))/2.0; ati->data[i*2] = (resampled_audio_output[i]-(resampled_audio_output_stereo[i]));
ati->data[i*2+1] = (resampled_audio_output[i]+(resampled_audio_output_stereo[i]*2.0))/2.0; ati->data[i*2+1] = (resampled_audio_output[i]+(resampled_audio_output_stereo[i]));
} }
} else { } else {
ati->channels = 1; ati->channels = 1;
@ -254,6 +254,7 @@ void DemodulatorThread::terminate() {
void DemodulatorThread::setStereo(bool state) { void DemodulatorThread::setStereo(bool state) {
stereo = state; stereo = state;
std::cout << "Stereo " << (state?"Enabled":"Disabled") << std::endl;
} }
bool DemodulatorThread::isStereo() { bool DemodulatorThread::isStereo() {