| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2015-08-12 09:03:02 +02:00
										 |  |  | // Copyright (C) 2015 F4EXB                                                      //
 | 
					
						
							|  |  |  | // written by Edouard Griffiths                                                  //
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:32:15 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,               //
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | 
					
						
							|  |  |  | // GNU General Public License V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 04:05:19 +02:00
										 |  |  | #include <QGlobalStatic>
 | 
					
						
							|  |  |  | #include <QThread>
 | 
					
						
							| 
									
										
										
										
											2016-10-19 14:29:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #include "dsp/dspengine.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-19 14:29:23 +02:00
										 |  |  | #include "dsp/dspdevicesourceengine.h"
 | 
					
						
							|  |  |  | #include "dsp/dspdevicesinkengine.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-18 11:59:56 +02:00
										 |  |  | #include "dsp/dspdevicemimoengine.h"
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 04:05:19 +02:00
										 |  |  | DSPEngine::DSPEngine() : | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |     m_deviceSourceEnginesUIDSequence(0), | 
					
						
							| 
									
										
										
										
											2016-10-19 14:29:23 +02:00
										 |  |  |     m_deviceSinkEnginesUIDSequence(0), | 
					
						
							| 
									
										
										
										
											2019-05-18 11:59:56 +02:00
										 |  |  |     m_deviceMIMOEnginesUIDSequence(0), | 
					
						
							| 
									
										
										
										
											2017-01-06 16:04:32 +01:00
										 |  |  |     m_audioInputDeviceIndex(-1),    // default device
 | 
					
						
							|  |  |  |     m_audioOutputDeviceIndex(-1)    // default device
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-05-09 01:26:39 +02:00
										 |  |  | 	m_dvSerialSupport = false; | 
					
						
							| 
									
										
										
										
											2019-05-12 10:25:55 +02:00
										 |  |  |     m_mimoSupport = false; | 
					
						
							| 
									
										
										
										
											2017-10-24 16:45:47 +02:00
										 |  |  |     m_masterTimer.start(50); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DSPEngine::~DSPEngine() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |     std::vector<DSPDeviceSourceEngine*>::iterator it = m_deviceSourceEngines.begin(); | 
					
						
							| 
									
										
										
										
											2016-05-11 11:34:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |     while (it != m_deviceSourceEngines.end()) | 
					
						
							| 
									
										
										
										
											2016-05-11 11:34:44 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         delete *it; | 
					
						
							|  |  |  |         ++it; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-09 04:09:05 +02:00
										 |  |  | Q_GLOBAL_STATIC(DSPEngine, dspEngine) | 
					
						
							|  |  |  | DSPEngine *DSPEngine::instance() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return dspEngine; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  | DSPDeviceSourceEngine *DSPEngine::addDeviceSourceEngine() | 
					
						
							| 
									
										
										
										
											2016-05-13 09:23:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |     m_deviceSourceEngines.push_back(new DSPDeviceSourceEngine(m_deviceSourceEnginesUIDSequence)); | 
					
						
							|  |  |  |     m_deviceSourceEnginesUIDSequence++; | 
					
						
							|  |  |  |     return m_deviceSourceEngines.back(); | 
					
						
							| 
									
										
										
										
											2016-05-13 09:23:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  | void DSPEngine::removeLastDeviceSourceEngine() | 
					
						
							| 
									
										
										
										
											2016-05-13 09:23:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |     if (m_deviceSourceEngines.size() > 0) | 
					
						
							| 
									
										
										
										
											2016-05-13 09:23:33 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |         DSPDeviceSourceEngine *lastDeviceEngine = m_deviceSourceEngines.back(); | 
					
						
							| 
									
										
										
										
											2016-05-13 09:23:33 +02:00
										 |  |  |         delete lastDeviceEngine; | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |         m_deviceSourceEngines.pop_back(); | 
					
						
							|  |  |  |         m_deviceSourceEnginesUIDSequence--; | 
					
						
							| 
									
										
										
										
											2016-05-12 00:35:39 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-19 14:29:23 +02:00
										 |  |  | DSPDeviceSinkEngine *DSPEngine::addDeviceSinkEngine() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_deviceSinkEngines.push_back(new DSPDeviceSinkEngine(m_deviceSinkEnginesUIDSequence)); | 
					
						
							|  |  |  |     m_deviceSinkEnginesUIDSequence++; | 
					
						
							|  |  |  |     return m_deviceSinkEngines.back(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void DSPEngine::removeLastDeviceSinkEngine() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_deviceSinkEngines.size() > 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         DSPDeviceSinkEngine *lastDeviceEngine = m_deviceSinkEngines.back(); | 
					
						
							|  |  |  |         delete lastDeviceEngine; | 
					
						
							|  |  |  |         m_deviceSinkEngines.pop_back(); | 
					
						
							|  |  |  |         m_deviceSinkEnginesUIDSequence--; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 11:59:56 +02:00
										 |  |  | DSPDeviceMIMOEngine *DSPEngine::addDeviceMIMOEngine() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_deviceMIMOEngines.push_back(new DSPDeviceMIMOEngine(m_deviceMIMOEnginesUIDSequence)); | 
					
						
							|  |  |  |     m_deviceMIMOEnginesUIDSequence++; | 
					
						
							|  |  |  |     return m_deviceMIMOEngines.back(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void DSPEngine::removeLastDeviceMIMOEngine() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_deviceMIMOEngines.size() > 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         DSPDeviceMIMOEngine *lastDeviceEngine = m_deviceMIMOEngines.back(); | 
					
						
							|  |  |  |         delete lastDeviceEngine; | 
					
						
							|  |  |  |         m_deviceMIMOEngines.pop_back(); | 
					
						
							|  |  |  |         m_deviceMIMOEnginesUIDSequence--; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  | DSPDeviceSourceEngine *DSPEngine::getDeviceSourceEngineByUID(uint uid) | 
					
						
							| 
									
										
										
										
											2016-05-11 19:14:23 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |     std::vector<DSPDeviceSourceEngine*>::iterator it = m_deviceSourceEngines.begin(); | 
					
						
							| 
									
										
										
										
											2016-05-11 19:14:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:32 +02:00
										 |  |  |     while (it != m_deviceSourceEngines.end()) | 
					
						
							| 
									
										
										
										
											2016-05-11 19:14:23 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-18 11:59:56 +02:00
										 |  |  |         if ((*it)->getUID() == uid) { | 
					
						
							| 
									
										
										
										
											2016-05-11 19:14:23 +02:00
										 |  |  |             return *it; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ++it; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 11:59:56 +02:00
										 |  |  |     return nullptr; | 
					
						
							| 
									
										
										
										
											2016-05-11 19:14:23 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-19 14:29:23 +02:00
										 |  |  | DSPDeviceSinkEngine *DSPEngine::getDeviceSinkEngineByUID(uint uid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     std::vector<DSPDeviceSinkEngine*>::iterator it = m_deviceSinkEngines.begin(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (it != m_deviceSinkEngines.end()) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-18 11:59:56 +02:00
										 |  |  |         if ((*it)->getUID() == uid) { | 
					
						
							|  |  |  |             return *it; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ++it; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return nullptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DSPDeviceMIMOEngine *DSPEngine::getDeviceMIMOEngineByUID(uint uid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     std::vector<DSPDeviceMIMOEngine*>::iterator it = m_deviceMIMOEngines.begin(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (it != m_deviceMIMOEngines.end()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ((*it)->getUID() == uid) { | 
					
						
							| 
									
										
										
										
											2016-10-19 14:29:23 +02:00
										 |  |  |             return *it; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ++it; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 11:59:56 +02:00
										 |  |  |     return nullptr; | 
					
						
							| 
									
										
										
										
											2016-10-19 14:29:23 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 12:01:04 +02:00
										 |  |  | #ifdef DSD_USE_SERIALDV
 | 
					
						
							| 
									
										
										
										
											2016-05-08 06:00:37 +02:00
										 |  |  | void DSPEngine::setDVSerialSupport(bool support) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (support) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_dvSerialSupport = m_dvSerialEngine.scan(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_dvSerialEngine.release(); | 
					
						
							|  |  |  |         m_dvSerialSupport = false; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-22 12:01:04 +02:00
										 |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  | void DSPEngine::setDVSerialSupport(bool support) | 
					
						
							|  |  |  | { (void) support; } | 
					
						
							| 
									
										
										
										
											2017-10-22 12:01:04 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool DSPEngine::hasDVSerialSupport() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef DSD_USE_SERIALDV
 | 
					
						
							|  |  |  |     return m_dvSerialSupport; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     return false; | 
					
						
							| 
									
										
										
										
											2016-05-08 06:00:37 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-22 12:01:04 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef DSD_USE_SERIALDV
 | 
					
						
							|  |  |  | void DSPEngine::getDVSerialNames(std::vector<std::string>& deviceNames) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_dvSerialEngine.getDevicesNames(deviceNames); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  | void DSPEngine::getDVSerialNames(std::vector<std::string>& deviceNames) | 
					
						
							|  |  |  | { (void) deviceNames; } | 
					
						
							| 
									
										
										
										
											2017-10-22 12:01:04 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DSD_USE_SERIALDV
 | 
					
						
							| 
									
										
										
										
											2017-12-26 20:29:23 +01:00
										 |  |  | void DSPEngine::pushMbeFrame( | 
					
						
							|  |  |  |         const unsigned char *mbeFrame, | 
					
						
							|  |  |  |         int mbeRateIndex, | 
					
						
							|  |  |  |         int mbeVolumeIndex, | 
					
						
							|  |  |  |         unsigned char channels, | 
					
						
							|  |  |  |         bool useHP, | 
					
						
							| 
									
										
										
										
											2018-04-23 01:04:47 +02:00
										 |  |  |         int upsampling, | 
					
						
							| 
									
										
										
										
											2017-12-26 20:29:23 +01:00
										 |  |  |         AudioFifo *audioFifo) | 
					
						
							| 
									
										
										
										
											2017-10-22 12:01:04 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-04-23 01:04:47 +02:00
										 |  |  |     m_dvSerialEngine.pushMbeFrame(mbeFrame, mbeRateIndex, mbeVolumeIndex, channels, useHP, upsampling, audioFifo); | 
					
						
							| 
									
										
										
										
											2017-10-22 12:01:04 +02:00
										 |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | void DSPEngine::pushMbeFrame( | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         const unsigned char *mbeFrame, | 
					
						
							|  |  |  |         int mbeRateIndex, | 
					
						
							|  |  |  |         int mbeVolumeIndex, | 
					
						
							|  |  |  |         unsigned char channels, | 
					
						
							|  |  |  |         bool useHP, | 
					
						
							|  |  |  |         int upsampling, | 
					
						
							|  |  |  |         AudioFifo *audioFifo) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     (void) mbeFrame; | 
					
						
							|  |  |  |     (void) mbeRateIndex; | 
					
						
							|  |  |  |     (void) mbeVolumeIndex; | 
					
						
							|  |  |  |     (void) channels; | 
					
						
							|  |  |  |     (void) useHP; | 
					
						
							|  |  |  |     (void) upsampling; | 
					
						
							|  |  |  |     (void) audioFifo; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-22 12:01:04 +02:00
										 |  |  | #endif
 |