9e5e2a2e63 
								
							
								 
							
						 
						
							
							
								
								Use directory name as multiple inclusion guard prefix.  
							
							We do this for all other libraries already.
Originally committed as revision 16990 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								bad5537e2c 
								
							
								 
							
						 
						
							
							
								
								Use full internal pathname in doxygen  @file  directives.  
							
							Otherwise doxygen complains about ambiguous filenames when files exist
under the same name in different subdirectories.
Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8615e5a6b3 
								
							
								 
							
						 
						
							
							
								
								Add backwards-compatibility typedef for removed _t names under appropriate  
							
							version #ifdef since otherwise public API is broken.
Originally committed as revision 16064 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								7dfea3420f 
								
							
								 
							
						 
						
							
							
								
								Drop _t from typedef names for POSIX compatibility.  
							
							Originally committed as revision 16062 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								2a4a62bffc 
								
							
								 
							
						 
						
							
							
								
								Implement postproc_version().  
							
							Originally committed as revision 15148 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								987903826b 
								
							
								 
							
						 
						
							
							
								
								Globally rename the header inclusion guard names.  
							
							Consistently apply this rule: the guard name is obtained from the
filename by stripping the leading "lib", converting '/' and '.'  to
'_' and uppercasing the resulting name. Guard names in the root
directory have to be prefixed by "FFMPEG_".
Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								16e0bf7349 
								
							
								 
							
						 
						
							
							
								
								cosmetics: Fix indentation to be 4 spaces and consistently place {}.  
							
							Originally committed as revision 12552 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								d952638699 
								
							
								 
							
						 
						
							
							
								
								typo: occured --> occurred  
							
							Originally committed as revision 12549 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  
				
					
						
							
							
								 
						
							
							
							
								
							
								800c289a66 
								
							
								 
							
						 
						
							
							
								
								less preprocessor magic in version number macros  
							
							Originally committed as revision 12246 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								76a448ed4f 
								
							
								 
							
						 
						
							
							
								
								Install headers in $prefix/include/$libname  
							
							Install each library's headers in $prefix/include/$libname.
The installed headers use #include "lib*/*.h"; applications
are expected to do the same.
Specify only $prefix/include in .pc files.
Originally committed as revision 12194 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8815bf011e 
								
							
								 
							
						 
						
							
							
								
								#include avutil.h in postprocess.h  
							
							Originally committed as revision 12155 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								e97ac1e6f5 
								
							
								 
							
						 
						
							
							
								
								Clean up lib* version definitions  
							
							Updating version numbers now requires changing only one place.
Originally committed as revision 12154 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								6c51fd3f2b 
								
							
								 
							
						 
						
							
							
								
								const  
							
							Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								69fdc40db7 
								
							
								 
							
						 
						
							
							
								
								Make pp_help a constant array of characters to move it to .rodata.  
							
							Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com
Originally committed as revision 11487 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								10ff3ff43b 
								
							
								 
							
						 
						
							
							
								
								Make pp_help a constant pointer to constant characters, moves it partially  
							
							in .rodata (the actual string) and partially in .data.relro (the pointer),
but doesn't change ABI.
Patch by Diego 'Flameeyes' Pettenò  flameeyes at gmail com
Originally committed as revision 11390 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ca32534337 
								
							
								 
							
						 
						
							
							
								
								Make pp_get_mode_by_name_and_quality accept a constant string.  
							
							Patch by Diego 'Flameeyes' Pettenò  flameeyes at gmail com
Originally committed as revision 11381 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								5b21bdabe4 
								
							
								 
							
						 
						
							
							
								
								Add FFMPEG_ prefix to all multiple inclusion guards.  
							
							Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								52703a6459 
								
							
								 
							
						 
						
							
							
								
								Use filename as multiple inclusion guard.  
							
							Originally committed as revision 10760 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								53eecfdefc 
								
							
								 
							
						 
						
							
							
								
								Fix 'make checkheaders'.  
							
							Originally committed as revision 9460 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								605315248c 
								
							
								 
							
						 
						
							
							
								
								Remove extern C declarations for C++.  
							
							FFmpeg is pure C and not all public headers have the declarations.
Originally committed as revision 9037 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 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  
				
					
						
							
							
								 
						
							
							
							
								
							
								6d9a242106 
								
							
								 
							
						 
						
							
							
								
								libavcodec/libpostproc ---> libpostproc  
							
							Originally committed as revision 5440 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								69e9b2cf45 
								
							
								 
							
						 
						
							
							
								
								Define separate version number for libpostproc.  
							
							Originally committed as revision 4859 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  
				
					
						
							
							
								 
						
							
							
							
								
							
								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  
				
					
						
							
							
								 
						
							
							
							
								
							
								b0ac780ac5 
								
							
								 
							
						 
						
							
							
								
								altivec optimizations and horizontal filter fix by (Romain Dolbeau <dolbeau at irisa dot fr>)  
							
							Originally committed as revision 3162 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						21 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								0426af3111 
								
							
								 
							
						 
						
							
							
								
								mpeg2 qscale flag  
							
							a few bugfixes for the C pp code
minor optimization
Originally committed as revision 1786 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						22 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								b304569aff 
								
							
								 
							
						 
						
							
							
								
								doxy / cosmetics  
							
							Originally committed as revision 1637 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						22 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								bba9b16c26 
								
							
								 
							
						 
						
							
							
								
								moving postprocess to ffmpeg/libavcodec  
							
							Originally committed as revision 1586 to svn://svn.ffmpeg.org/ffmpeg/trunk
Originally committed as revision 9427 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Originally committed as revision 9428 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								6524b641c0 
								
							
								 
							
						 
						
							
							
								
								#ifdef c++  
							
							Originally committed as revision 9402 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								e9effafdf9 
								
							
								 
							
						 
						
							
							
								
								YUV 411/422/444 support for pp  
							
							Originally committed as revision 8806 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								326d40af06 
								
							
								 
							
						 
						
							
							
								
								cleanup  
							
							Originally committed as revision 8041 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								c41d972d9c 
								
							
								 
							
						 
						
							
							
								
								cleanup  
							
							Originally committed as revision 8039 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								b401ebad91 
								
							
								 
							
						 
						
							
							
								
								cosmetics requested by kabi  
							
							Originally committed as revision 8020 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								fa6ea14e40 
								
							
								 
							
						 
						
							
							
								
								per context cpuCaps (idea by kabi)  
							
							Originally committed as revision 7986 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								4407a3c47a 
								
							
								 
							
						 
						
							
							
								
								change qscale type to int8 and fix qscale ordering  
							
							Originally committed as revision 7985 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								b49d916512 
								
							
								 
							
						 
						
							
							
								
								using same numbers for cpuCaps as libmpeg2 & liba52  
							
							Originally committed as revision 7974 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								4603ed8f91 
								
							
								 
							
						 
						
							
							
								
								cleanly passing the cpuCaps  
							
							Originally committed as revision 7973 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								df8d4d0ed5 
								
							
								 
							
						 
						
							
							
								
								cleanup  
							
							Originally committed as revision 7964 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								9cb54f4311 
								
							
								 
							
						 
						
							
							
								
								cosmetics ;)  
							
							prefixing all functions with pp_ to avoid namespace issues
Originally committed as revision 7962 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ec487e5db8 
								
							
								 
							
						 
						
							
							
								
								better deblocking filter  
							
							Originally committed as revision 7961 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								9c9e467d8d 
								
							
								 
							
						 
						
							
							
								
								postprocessing cleanup:  
							
							remove opendivx #ifdefs
remove rk1 filter
remove unused / obsolete stuff
add -1,4,2,4,-1 deinterlacing filter (ffmpeg uses that)
threadsafe / no more non-const globals
some optimizations
different strides for Y,U,V possible
remove ebx usage (someone really should fix gcc, this is really lame)
change the dering filter slightly (tell me if its worse for any files)
Originally committed as revision 7947 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								096172d435 
								
							
								 
							
						 
						
							
							
								
								fix typo found by Milan Cutka <cutka@szm.sk>  
							
							Originally committed as revision 5577 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						23 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8aaac43576 
								
							
								 
							
						 
						
							
							
								
								-npp fq:<quantizer>  
							
							force quantizer (for these lq movies which where reencoded at high bitrates)
(c) 2002
Originally committed as revision 3965 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						24 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								07f8991b60 
								
							
								 
							
						 
						
							
							
								
								minor brightness/contrast bugfix / moved some global vars into ppMode  
							
							non mmx compilation bugfix
Originally committed as revision 3833 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						24 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								45b4f28550 
								
							
								 
							
						 
						
							
							
								
								new -pp options stuff (-npp ...)  
							
							see line527@postproc/postprocess.c ;) for the documentation of the format
Originally committed as revision 3772 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						24 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								06c4804a79 
								
							
								 
							
						 
						
							
							
								
								compiletime pp-mode support (luminance = chrominance filters though) 1-2% faster with -benchmark -vo null -nosound  
							
							Originally committed as revision 3155 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						24 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								117e45b03b 
								
							
								 
							
						 
						
							
							
								
								temporal noise reducer in C (-pp 0x100000)  
							
							setting the thresholds from the commandline requires postprocess2() / getPpModeByNameAndQuality() (someone could perhaps modify mplayer so that they are beiing used, iam too lazy for it ;)
Originally committed as revision 2861 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc 
							
						 
						24 years ago