You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	darwin: allow 64-bit darwin to allocate executable memory
darwin requires _DARWIN_C_SOURCE to be defined for MAP_ANON, which is used by swscale to determine whether to use malloc() or mmap(). 64-bit darwin does not have an executable heap, so mmap() must be used instead of malloc(), and therefore _DARWIN_C_SOURCE must be defined. Originally committed as revision 31760 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
		| @@ -19,6 +19,7 @@ | ||||
|  */ | ||||
|  | ||||
| #define _SVID_SOURCE //needed for MAP_ANONYMOUS | ||||
| #define _DARWIN_C_SOURCE // needed for MAP_ANON | ||||
| #include <inttypes.h> | ||||
| #include <string.h> | ||||
| #include <math.h> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user