You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	change atoll call to equivalent strtoll to fix compilation on Mac OS X 10.2
patch by Patrice Bensoussan \ patrice dot bensoussan chez free dot fr Original thread: date: 04/05/2007 07:56 PM subject: [Ffmpeg-devel] [PATCH] Fix broken compilation on Mac OS X 10.2 due to OPT_INT64 support Originally committed as revision 8724 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		
				
					committed by
					
						 Benoit Fouet
						Benoit Fouet
					
				
			
			
				
	
			
			
			
						parent
						
							3a74415d59
						
					
				
				
					commit
					946d3b12a1
				
			| @@ -99,7 +99,7 @@ unknown_opt: | ||||
|             } else if (po->flags & OPT_INT) { | ||||
|                 *po->u.int_arg = atoi(arg); | ||||
|             } else if (po->flags & OPT_INT64) { | ||||
|                 *po->u.int64_arg = atoll(arg); | ||||
|                 *po->u.int64_arg = strtoll(arg, (char **)NULL, 10); | ||||
|             } else if (po->flags & OPT_FLOAT) { | ||||
|                 *po->u.float_arg = atof(arg); | ||||
|             } else if (po->flags & OPT_FUNC2) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user