| 
									
										
										
										
											2016-04-08 18:14:50 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-18 12:02:48 +01:00
										 |  |  | // Copyright (C) 2016, 2018-2019, 2021 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
 | 
					
						
							| 
									
										
										
										
											2016-04-08 18:14:50 +02: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 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-04-08 18:14:50 +02: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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-08 18:53:02 +01:00
										 |  |  | #include "dsddecoder.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-02 13:18:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-08 18:14:50 +02:00
										 |  |  | #include <QtGlobal>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DSDDecoder::DSDDecoder() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-04-21 02:13:57 +02:00
										 |  |  |     m_decoder.setQuiet(); | 
					
						
							|  |  |  |     m_decoder.setUpsampling(6); // force upsampling of audio to 48k
 | 
					
						
							|  |  |  |     m_decoder.setStereo(true);  // force copy to L+R channels
 | 
					
						
							|  |  |  |     m_decoder.setDecodeMode(DSDcc::DSDDecoder::DSDDecodeAuto, true); // Initialize with auto-detect
 | 
					
						
							|  |  |  |     m_decoder.setUvQuality(3); // This is gr-dsd default
 | 
					
						
							| 
									
										
										
										
											2016-05-11 11:34:19 +02:00
										 |  |  |     m_decoder.enableCosineFiltering(false); | 
					
						
							| 
									
										
										
										
											2016-08-06 11:03:05 +02:00
										 |  |  |     m_decoder.setDataRate(DSDcc::DSDDecoder::DSDRate4800); | 
					
						
							| 
									
										
										
										
											2016-04-08 18:14:50 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DSDDecoder::~DSDDecoder() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-06 11:03:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-23 01:04:47 +02:00
										 |  |  | void DSDDecoder::setUpsampling(int upsampling) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_decoder.setUpsampling(upsampling); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-06 11:03:05 +02:00
										 |  |  | void DSDDecoder::setBaudRate(int baudRate) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (baudRate == 2400) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_decoder.setDataRate(DSDcc::DSDDecoder::DSDRate2400); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (baudRate == 4800) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_decoder.setDataRate(DSDcc::DSDDecoder::DSDRate4800); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (baudRate == 9600) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_decoder.setDataRate(DSDcc::DSDDecoder::DSDRate9600); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else // default 4800 bauds
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_decoder.setDataRate(DSDcc::DSDDecoder::DSDRate4800); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // when setting baud rate activate detection of all possible modes for this rate
 | 
					
						
							|  |  |  |     // because on the other hand when a mode is selected then the baud rate is automatically changed
 | 
					
						
							|  |  |  |     m_decoder.setDecodeMode(DSDcc::DSDDecoder::DSDDecodeAuto, true); | 
					
						
							|  |  |  | } |