| 
									
										
										
										
											2016-09-10 20:03:06 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2016 F4EXB                                                      //
 | 
					
						
							|  |  |  | // 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 14:32:15 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-09-10 20:03:06 +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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "filtermbe.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-26 20:29:23 +01:00
										 |  |  | const float MBEAudioInterpolatorFilter::m_lpa[3] = {1.0,           1.392667E+00, -5.474446E-01}; | 
					
						
							|  |  |  | const float MBEAudioInterpolatorFilter::m_lpb[3] = {3.869430E-02,  7.738860E-02,  3.869430E-02}; | 
					
						
							| 
									
										
										
										
											2016-09-10 20:03:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-24 02:29:54 +02:00
										 |  |  | const float MBEAudioInterpolatorFilter::m_hpa[3] = {1.000000e+00,  1.667871e+00, -7.156964e-01}; | 
					
						
							|  |  |  | const float MBEAudioInterpolatorFilter::m_hpb[3] = {8.459039e-01, -1.691760e+00,  8.459039e-01}; | 
					
						
							| 
									
										
										
										
											2017-12-26 20:29:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | MBEAudioInterpolatorFilter::MBEAudioInterpolatorFilter() : | 
					
						
							|  |  |  |         m_filterLP(m_lpa, m_lpb), | 
					
						
							|  |  |  |         m_filterHP(m_hpa, m_hpb), | 
					
						
							|  |  |  |         m_useHP(false) | 
					
						
							| 
									
										
										
										
											2016-09-11 17:02:49 +02:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-09-10 20:03:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | MBEAudioInterpolatorFilter::~MBEAudioInterpolatorFilter() | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-26 20:29:23 +01:00
										 |  |  | float MBEAudioInterpolatorFilter::run(const float& sample) | 
					
						
							| 
									
										
										
										
											2016-09-10 20:03:06 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-26 20:29:23 +01:00
										 |  |  |     return m_useHP ? m_filterLP.run(m_filterHP.run(sample)) : m_filterLP.run(sample); | 
					
						
							| 
									
										
										
										
											2016-09-10 20:03:06 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-06-24 02:29:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | float MBEAudioInterpolatorFilter::runHP(const float& sample) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_filterHP.run(sample); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | float MBEAudioInterpolatorFilter::runLP(const float& sample) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_filterLP.run(sample); | 
					
						
							|  |  |  | } |