mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-23 04:08:36 -05:00
Indicate stereo status in term
This commit is contained in:
parent
44602303a7
commit
591b03dc7d
@ -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() {
|
||||||
|
Loading…
Reference in New Issue
Block a user