You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	Stop the approximation in bessel() once it does no longer improve.
This is faster. Originally committed as revision 21038 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		| @@ -76,11 +76,13 @@ typedef struct AVResampleContext{ | ||||
|  */ | ||||
| static double bessel(double x){ | ||||
|     double v=1; | ||||
|     double lastv=0; | ||||
|     double t=1; | ||||
|     int i; | ||||
|  | ||||
|     x= x*x/4; | ||||
|     for(i=1; i<50; i++){ | ||||
|     for(i=1; v != lastv; i++){ | ||||
|         lastv=v; | ||||
|         t *= x/(i*i); | ||||
|         v += t; | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user