2cab640129 
								
							
								 
							
						 
						
							
							
								
								typo fixes  
							
							Originally committed as revision 12428 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								7ce6892373 
								
							
								 
							
						 
						
							
							
								
								misc spelling fixes  
							
							Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								90d30570d8 
								
							
								 
							
						 
						
							
							
								
								Avoid void*-arithmetic.  
							
							Patch by mvplayer: ffmpeg gmail com
Originally committed as revision 11932 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								d7f654692a 
								
							
								 
							
						 
						
							
							
								
								Move unaltered av_freep() comments to the header file.  
							
							Originally committed as revision 8253 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								f690ee715d 
								
							
								 
							
						 
						
							
							
								
								Move unaltered av_free() comments to the header file.  
							
							Originally committed as revision 8252 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								d6def91a3b 
								
							
								 
							
						 
						
							
							
								
								Move unaltered av_realloc() comments to the header file.  
							
							Originally committed as revision 8251 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								9a07029916 
								
							
								 
							
						 
						
							
							
								
								Move unaltered av_malloc() comments to the header file.  
							
							Originally committed as revision 8250 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								eafcac6ac8 
								
							
								 
							
						 
						
							
							
								
								cosmetics: Fix another common typo, dependAnt --> dependEnt.  
							
							Originally committed as revision 8114 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								9ddbcae667 
								
							
								 
							
						 
						
							
							
								
								rename MEMALIGN_HACK to CONFIG_MEMALIGN_HACK, use common code in configure  
							
							Originally committed as revision 7025 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								b78e7197a8 
								
							
								 
							
						 
						
							
							
								
								Change license headers to say 'FFmpeg' instead of 'this program/this library'  
							
							and fix GPL/LGPL version mismatches.
Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								79e47000c8 
								
							
								 
							
						 
						
							
							
								
								move memory functions from avcodec to avutil  
							
							Originally committed as revision 6330 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								0a7c36af54 
								
							
								 
							
						 
						
							
							
								
								revert aligned realloc() changesm this should be identical to r5784  
							
							Originally committed as revision 6008 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								732692d94c 
								
							
								 
							
						 
						
							
							
								
								trying to fix av_realloc()  
							
							Originally committed as revision 5996 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								75c413ae77 
								
							
								 
							
						 
						
							
							
								
								align av_realloc()  
							
							Originally committed as revision 5992 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								cea8f6f323 
								
							
								 
							
						 
						
							
							
								
								Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutil  
							
							Originally committed as revision 5784 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								da2e9781bb 
								
							
								 
							
						 
						
							
							
								
								spelling typo  
							
							Originally committed as revision 5633 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								a949360163 
								
							
								 
							
						 
						
							
							
								
								* Allocating 16 bytes more for the MEMALIGN_HACK is enough. There's no  
							
							need for 1 more extra byte.
* Checking whether the to be allocated size is larger than INT_MAX,
doesn't assure that size+16 bytes for the MEMALIGN_HACK isn't larger
than INT_MAX.
* malloc might return NULL. Checking for it before using that pointer
seems like a good idea.
Patch by Herve W. H PPP O PPP W PPP aka PPP V+ffmpeg AH gmail PPP com
Original thread:
Date: Jun 29, 2006 1:21 PM
Subject: [Ffmpeg-devel] [PATCH] minor improvements to libavcodec/mem.c
Originally committed as revision 5559 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								7d77d5f639 
								
							
								 
							
						 
						
							
							
								
								spelling fixes courtesy of "Hervé W." H.O.W.aka.V+ffmpeg (at) gmail (dot) com  
							
							Originally committed as revision 5552 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ed96aeea64 
								
							
								 
							
						 
						
							
							
								
								long is better than int for pointer differences  
							
							patch by Dieter <freebsd at sopwith solgatos com>
Originally committed as revision 4911 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						20 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								4f59b684a6 
								
							
								 
							
						 
						
							
							
								
								Remove all stray tabs and trailing whitespace, this time for good.  
							
							Originally committed as revision 4891 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						20 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								5509bffa88 
								
							
								 
							
						 
						
							
							
								
								Update licensing information: The FSF changed postal address.  
							
							Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						20 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								1499e0bee9 
								
							
								 
							
						 
						
							
							
								
								av_freep() recommandition  
							
							Originally committed as revision 4809 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						20 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								bb270c0896 
								
							
								 
							
						 
						
							
							
								
								COSMETICS: tabs --> spaces, some prettyprinting  
							
							Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						20 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								115329f160 
								
							
								 
							
						 
						
							
							
								
								COSMETICS: Remove all trailing whitespace.  
							
							Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						20 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								88730be651 
								
							
								 
							
						 
						
							
							
								
								kill warnings patch by (Måns Rullgård <mru inprovide com>)  
							
							Originally committed as revision 3977 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						20 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								d5f121e2a5 
								
							
								 
							
						 
						
							
							
								
								10l (gcc 2.95 fix)  
							
							Originally committed as revision 3827 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						21 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								0ecca7a49f 
								
							
								 
							
						 
						
							
							
								
								various security fixes and precautionary checks  
							
							Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						21 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								c07a22fb9f 
								
							
								 
							
						 
						
							
							
								
								realloc(NULL) fix  
							
							Originally committed as revision 3351 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						21 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								da9b170c6f 
								
							
								 
							
						 
						
							
							
								
								optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS  
							
							Originally committed as revision 3199 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						21 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								983e3246b7 
								
							
								 
							
						 
						
							
							
								
								per file doxy  
							
							Originally committed as revision 1634 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						22 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8e1e6f31c1 
								
							
								 
							
						 
						
							
							
								
								use av_malloc() functions - added av_strdup and av_realloc()  
							
							Originally committed as revision 1505 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								b7a22d846b 
								
							
								 
							
						 
						
							
							
								
								cleanup  
							
							Originally committed as revision 1487 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								6772518310 
								
							
								 
							
						 
						
							
							
								
								finetuneing thresholds/factors  
							
							nicer mb decission
a few minor improvements & fixes
Originally committed as revision 1472 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								18f770162b 
								
							
								 
							
						 
						
							
							
								
								* fixing some minor const warnings  
							
							Originally committed as revision 1205 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8f2b21a80f 
								
							
								 
							
						 
						
							
							
								
								fixing memalign  
							
							Originally committed as revision 949 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								d01fe86dac 
								
							
								 
							
						 
						
							
							
								
								put memory functions in a separate file so that the user can redefinite them without modifying the library  
							
							Originally committed as revision 684 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						23 years ago