| 
									
										
										
										
											2016-04-08 16:14:50 +00:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2016-04-22 01:53:16 +00:00
										 |  |  | // Copyright (C) 2016 F4EXB                                                      //
 | 
					
						
							| 
									
										
										
										
											2016-04-08 16:14:50 +00:00
										 |  |  | // written by Edouard Griffiths                                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 04:39:30 +00:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-04-08 16:14:50 +00: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 17:53:02 +00:00
										 |  |  | #include "dsddecoder.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-02 11:18:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-08 16:14:50 +00:00
										 |  |  | #include <QtGlobal>
 | 
					
						
							| 
									
										
										
										
											2016-04-09 11:12:48 +00:00
										 |  |  | #include "audio/audiofifo.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-08 16:14:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | DSDDecoder::DSDDecoder() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-04-21 00:13:57 +00: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 09:34:19 +00:00
										 |  |  |     m_decoder.enableCosineFiltering(false); | 
					
						
							| 
									
										
										
										
											2016-08-06 09:03:05 +00:00
										 |  |  |     m_decoder.setDataRate(DSDcc::DSDDecoder::DSDRate4800); | 
					
						
							| 
									
										
										
										
											2016-04-08 16:14:50 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DSDDecoder::~DSDDecoder() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-06 09:03:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-22 23:04:47 +00:00
										 |  |  | void DSDDecoder::setUpsampling(int upsampling) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_decoder.setUpsampling(upsampling); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-06 09:03:05 +00: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); | 
					
						
							|  |  |  | } |