mirror of
				https://github.com/AlexandreRouma/SDRPlusPlus.git
				synced 2025-10-31 00:48:11 +01:00 
			
		
		
		
	fixed resamplers again...
This commit is contained in:
		
							
								
								
									
										
											BIN
										
									
								
								lib/SoapySDR.lib
									
									
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								lib/SoapySDR.lib
									
									
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -320,7 +320,7 @@ namespace dsp { | ||||
|             complex_t* delayStart = &inBuf[std::max<int>(inCount - tapCount, 0)]; | ||||
|             int delaySize = tapCount * sizeof(complex_t); | ||||
|             complex_t* delayBufEnd = &delayBuf[std::max<int>(tapCount - inCount, 0)]; | ||||
|             int moveSize = (tapCount - inCount) * sizeof(complex_t); | ||||
|             int moveSize = std::min<int>(inCount, tapCount - inCount) * sizeof(complex_t); | ||||
|             int inSize = inCount * sizeof(complex_t); | ||||
|  | ||||
|             int interp = _this->_interp; | ||||
| @@ -514,7 +514,7 @@ namespace dsp { | ||||
|             float* delayStart = &inBuf[std::max<int>(inCount - tapCount, 0)]; | ||||
|             int delaySize = tapCount * sizeof(float); | ||||
|             float* delayBufEnd = &delayBuf[std::max<int>(tapCount - inCount, 0)]; | ||||
|             int moveSize = (tapCount - inCount) * sizeof(float); | ||||
|             int moveSize = std::min<int>(inCount, tapCount - inCount) * sizeof(float); | ||||
|             int inSize = inCount * sizeof(float); | ||||
|  | ||||
|             int interp = _this->_interp; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user