mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			201 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			201 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "dsp/inthalfbandfilter.h"
 | 
						|
 | 
						|
IntHalfbandFilter::IntHalfbandFilter()
 | 
						|
{
 | 
						|
	for(int i = 0; i < HB_FILTERORDER + 1; i++) {
 | 
						|
		m_samples[i][0] = 0;
 | 
						|
		m_samples[i][1] = 0;
 | 
						|
	}
 | 
						|
	m_ptr = 0;
 | 
						|
	m_state = 0;
 | 
						|
}
 |