comparison framework/MainWindowBase.cpp @ 751:ed5db7d37005 pitch-align

Merge from default branch
author Chris Cannam
date Wed, 22 Apr 2020 17:40:09 +0100
parents baa7d3a85317
children 5b6655449ba6 6429a164b7e1
comparison
equal deleted inserted replaced
744:36772d79cf44 751:ed5db7d37005
80 #include "system/System.h" 80 #include "system/System.h"
81 81
82 #include <bqaudioio/SystemPlaybackTarget.h> 82 #include <bqaudioio/SystemPlaybackTarget.h>
83 #include <bqaudioio/SystemAudioIO.h> 83 #include <bqaudioio/SystemAudioIO.h>
84 #include <bqaudioio/AudioFactory.h> 84 #include <bqaudioio/AudioFactory.h>
85 #include <bqaudioio/ResamplerWrapper.h>
86 85
87 #include <QApplication> 86 #include <QApplication>
88 #include <QMessageBox> 87 #include <QMessageBox>
89 #include <QGridLayout> 88 #include <QGridLayout>
90 #include <QLabel> 89 #include <QLabel>
149 m_timeRulerLayer(nullptr), 148 m_timeRulerLayer(nullptr),
150 m_audioMode(audioMode), 149 m_audioMode(audioMode),
151 m_midiMode(midiMode), 150 m_midiMode(midiMode),
152 m_playSource(nullptr), 151 m_playSource(nullptr),
153 m_recordTarget(nullptr), 152 m_recordTarget(nullptr),
154 m_resamplerWrapper(nullptr),
155 m_playTarget(nullptr), 153 m_playTarget(nullptr),
156 m_audioIO(nullptr), 154 m_audioIO(nullptr),
157 m_oscQueue(nullptr), 155 m_oscQueue(nullptr),
158 m_oscQueueStarter(nullptr), 156 m_oscQueueStarter(nullptr),
159 m_oscScript(nullptr), 157 m_oscScript(nullptr),
281 this, SLOT(sampleRateMismatch(sv_samplerate_t, sv_samplerate_t, bool))); 279 this, SLOT(sampleRateMismatch(sv_samplerate_t, sv_samplerate_t, bool)));
282 connect(m_playSource, SIGNAL(channelCountIncreased(int)), 280 connect(m_playSource, SIGNAL(channelCountIncreased(int)),
283 this, SLOT(audioChannelCountIncreased(int))); 281 this, SLOT(audioChannelCountIncreased(int)));
284 connect(m_playSource, SIGNAL(audioOverloadPluginDisabled()), 282 connect(m_playSource, SIGNAL(audioOverloadPluginDisabled()),
285 this, SLOT(audioOverloadPluginDisabled())); 283 this, SLOT(audioOverloadPluginDisabled()));
286 connect(m_playSource, SIGNAL(audioTimeStretchMultiChannelDisabled()),
287 this, SLOT(audioTimeStretchMultiChannelDisabled()));
288 284
289 connect(m_viewManager, SIGNAL(monitoringLevelsChanged(float, float)), 285 connect(m_viewManager, SIGNAL(monitoringLevelsChanged(float, float)),
290 this, SLOT(monitoringLevelsChanged(float, float))); 286 this, SLOT(monitoringLevelsChanged(float, float)));
291 287
292 connect(m_viewManager, SIGNAL(playbackFrameChanged(sv_frame_t)), 288 connect(m_viewManager, SIGNAL(playbackFrameChanged(sv_frame_t)),
2570 SVCERR << "createAudioIO: Preferred playback device = \"" 2566 SVCERR << "createAudioIO: Preferred playback device = \""
2571 << preference.playbackDevice << "\"" << endl; 2567 << preference.playbackDevice << "\"" << endl;
2572 SVCERR << "createAudioIO: Preferred record device = \"" 2568 SVCERR << "createAudioIO: Preferred record device = \""
2573 << preference.recordDevice << "\"" << endl; 2569 << preference.recordDevice << "\"" << endl;
2574 2570
2575 if (!m_resamplerWrapper) { 2571 breakfastquay::ApplicationPlaybackSource *source =
2576 m_resamplerWrapper = new breakfastquay::ResamplerWrapper(m_playSource); 2572 m_playSource->getApplicationPlaybackSource();
2577 m_playSource->setResamplerWrapper(m_resamplerWrapper);
2578 }
2579 2573
2580 std::string errorString; 2574 std::string errorString;
2581 2575
2582 if (m_audioMode == AUDIO_PLAYBACK_AND_RECORD) { 2576 if (m_audioMode == AUDIO_PLAYBACK_AND_RECORD) {
2583 m_audioIO = breakfastquay::AudioFactory:: 2577 m_audioIO = breakfastquay::AudioFactory::
2584 createCallbackIO(m_recordTarget, m_resamplerWrapper, 2578 createCallbackIO(m_recordTarget, source, preference, errorString);
2585 preference, errorString);
2586 if (m_audioIO) { 2579 if (m_audioIO) {
2587 SVCERR << "MainWindowBase::createAudioIO: Suspending on creation" << endl; 2580 SVCERR << "MainWindowBase::createAudioIO: Suspending on creation" << endl;
2588 m_audioIO->suspend(); // start in suspended state 2581 m_audioIO->suspend(); // start in suspended state
2589 m_playSource->setSystemPlaybackTarget(m_audioIO); 2582 m_playSource->setSystemPlaybackTarget(m_audioIO);
2590 } else { 2583 } else {
2595 } 2588 }
2596 } 2589 }
2597 2590
2598 if (!m_audioIO) { 2591 if (!m_audioIO) {
2599 m_playTarget = breakfastquay::AudioFactory:: 2592 m_playTarget = breakfastquay::AudioFactory::
2600 createCallbackPlayTarget(m_resamplerWrapper, 2593 createCallbackPlayTarget(source, preference, errorString);
2601 preference, errorString);
2602 if (m_playTarget) { 2594 if (m_playTarget) {
2603 SVCERR << "MainWindowBase::createAudioIO: Suspending on creation" << endl; 2595 SVCERR << "MainWindowBase::createAudioIO: Suspending on creation" << endl;
2604 m_playTarget->suspend(); // start in suspended state 2596 m_playTarget->suspend(); // start in suspended state
2605 m_playSource->setSystemPlaybackTarget(m_playTarget); 2597 m_playSource->setSystemPlaybackTarget(m_playTarget);
2606 } 2598 }
2650 MainWindowBase::deleteAudioIO() 2642 MainWindowBase::deleteAudioIO()
2651 { 2643 {
2652 // First prevent this trying to call target. 2644 // First prevent this trying to call target.
2653 if (m_playSource) { 2645 if (m_playSource) {
2654 m_playSource->setSystemPlaybackTarget(nullptr); 2646 m_playSource->setSystemPlaybackTarget(nullptr);
2655 m_playSource->setResamplerWrapper(nullptr);
2656 } 2647 }
2657 2648
2658 // Then delete the breakfastquay::System object. 2649 // Then delete the breakfastquay::System object.
2659 // Only one of these two exists! 2650 // Only one of these two exists!
2660 delete m_audioIO; 2651 delete m_audioIO;
2661 delete m_playTarget; 2652 delete m_playTarget;
2662 2653
2663 // And the breakfastquay resampler wrapper. We need to
2664 // delete/recreate this if the channel count changes, which is one
2665 // of the use cases for recreateAudioIO() calling this
2666 delete m_resamplerWrapper;
2667
2668 m_audioIO = nullptr; 2654 m_audioIO = nullptr;
2669 m_playTarget = nullptr; 2655 m_playTarget = nullptr;
2670 m_resamplerWrapper = nullptr;
2671 } 2656 }
2672 2657
2673 void 2658 void
2674 MainWindowBase::recreateAudioIO() 2659 MainWindowBase::recreateAudioIO()
2675 { 2660 {