mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05:00 
			
		
		
		
	IntHalfbandFilterEO1: fixed unused variables
This commit is contained in:
		
							parent
							
								
									fa5030eac4
								
							
						
					
					
						commit
						8b52059ca4
					
				@ -459,9 +459,6 @@ protected:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    void doFIR(Sample* sample)
 | 
					    void doFIR(Sample* sample)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        int a = m_ptr/2 + m_size; // tip pointer
 | 
					 | 
				
			||||||
        int b = m_ptr/2 + 1; // tail pointer
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        qint32 iAcc = 0;
 | 
					        qint32 iAcc = 0;
 | 
				
			||||||
        qint32 qAcc = 0;
 | 
					        qint32 qAcc = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -474,6 +471,9 @@ protected:
 | 
				
			|||||||
                qAcc
 | 
					                qAcc
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
 | 
					        int a = m_ptr/2 + m_size; // tip pointer
 | 
				
			||||||
 | 
					        int b = m_ptr/2 + 1; // tail pointer
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for (int i = 0; i < HBFIRFilterTraits<HBFilterOrder>::hbOrder / 4; i++)
 | 
					        for (int i = 0; i < HBFIRFilterTraits<HBFilterOrder>::hbOrder / 4; i++)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if ((m_ptr % 2) == 0)
 | 
					            if ((m_ptr % 2) == 0)
 | 
				
			||||||
@ -509,9 +509,6 @@ protected:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    void doFIR(qint32 *x, qint32 *y)
 | 
					    void doFIR(qint32 *x, qint32 *y)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        int a = m_ptr/2 + m_size; // tip pointer
 | 
					 | 
				
			||||||
        int b = m_ptr/2 + 1; // tail pointer
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        qint32 iAcc = 0;
 | 
					        qint32 iAcc = 0;
 | 
				
			||||||
        qint32 qAcc = 0;
 | 
					        qint32 qAcc = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -524,6 +521,9 @@ protected:
 | 
				
			|||||||
                qAcc
 | 
					                qAcc
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
 | 
					        int a = m_ptr/2 + m_size; // tip pointer
 | 
				
			||||||
 | 
					        int b = m_ptr/2 + 1; // tail pointer
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for (int i = 0; i < HBFIRFilterTraits<HBFilterOrder>::hbOrder / 4; i++)
 | 
					        for (int i = 0; i < HBFIRFilterTraits<HBFilterOrder>::hbOrder / 4; i++)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if ((m_ptr % 2) == 0)
 | 
					            if ((m_ptr % 2) == 0)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user