mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	Fixed decimator by 64 centered
This commit is contained in:
		
							parent
							
								
									76d52e75fc
								
							
						
					
					
						commit
						f97671ae93
					
				@ -401,7 +401,7 @@ void Decimators<T, SdrBits, InputBits>::decimate64_cen(SampleVector::iterator* i
 | 
				
			|||||||
							qint32 x5 = x4;
 | 
												qint32 x5 = x4;
 | 
				
			||||||
							qint32 y5 = y4;
 | 
												qint32 y5 = y4;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							if (m_decimator64.workDecimateCenter(&x4, &y4))
 | 
												if (m_decimator64.workDecimateCenter(&x5, &y5))
 | 
				
			||||||
							{
 | 
												{
 | 
				
			||||||
								(**it).setReal(x5 >> decimation_shifts<SdrBits, InputBits>::post64);
 | 
													(**it).setReal(x5 >> decimation_shifts<SdrBits, InputBits>::post64);
 | 
				
			||||||
								(**it).setImag(y5 >> decimation_shifts<SdrBits, InputBits>::post64);
 | 
													(**it).setImag(y5 >> decimation_shifts<SdrBits, InputBits>::post64);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user