Anton Khirnov 
							
						 
					 
					
						
						
							
						
						ec6402b7c5 
					 
					
						
						
							
							lavc: use designated initialisers for all codecs.  
						
						... 
						
						
						
						It's more readable and less prone to breakage. 
						
						
					 
					
						2011-07-29 08:42:34 +02:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						ad4cd0c2a4 
					 
					
						
						
							
							doxygen: use Doxygen markup for authors and web links where appropriate  
						
						
						
						
					 
					
						2011-07-15 02:01:21 +02:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						df96f22d8f 
					 
					
						
						
							
							Replace custom debug output functions by av_dlog().  
						
						
						
						
					 
					
						2011-06-03 00:44:03 +02:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						b2832c3904 
					 
					
						
						
							
							vqavideo: We no longer need to ask for version 1 samples.  
						
						
						
						
					 
					
						2011-04-22 20:02:24 +02:00 
						 
				 
			
				
					
						
							
							
								Mans Rullgard 
							
						 
					 
					
						
						
							
						
						2912e87a6c 
					 
					
						
						
							
							Replace FFmpeg with Libav in licence headers  
						
						... 
						
						
						
						Signed-off-by: Mans Rullgard <mans@mansr.com > 
						
						
					 
					
						2011-03-19 13:33:20 +00:00 
						 
				 
			
				
					
						
							
							
								Reinhard Tartler 
							
						 
					 
					
						
						
							
						
						737eb5976f 
					 
					
						
						
							
							Merge libavcore into libavutil  
						
						... 
						
						
						
						It is pretty hopeless that other considerable projects will adopt
libavutil alone in other projects. Projects that need small footprint
are better off with more specialized libraries such as gnulib or rather
just copy the necessary parts that they need. With this in mind, nobody
is helped by having libavutil and libavcore split. In order to ease
maintenance inside and around FFmpeg and to reduce confusion where to
put common code, avcore's functionality is merged (back) to avutil.
Signed-off-by: Reinhard Tartler <siretart@tauware.de > 
						
						
					 
					
						2011-02-15 16:18:21 +01:00 
						 
				 
			
				
					
						
							
							
								Diego Elio Pettenò 
							
						 
					 
					
						
						
							
						
						d36beb3f69 
					 
					
						
						
							
							Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.  
						
						... 
						
						
						
						None of these symbols should be accessed directly, so declare them as
hidden.
Signed-off-by: Mans Rullgard <mans@mansr.com > 
						
						
					 
					
						2011-01-26 16:08:45 +00:00 
						 
				 
			
				
					
						
							
							
								Stefano Sabatini 
							
						 
					 
					
						
						
							
						
						e16f217ceb 
					 
					
						
						
							
							Use new imgutils.h API names, fix deprecation warnings.  
						
						... 
						
						
						
						Originally committed as revision 25058 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2010-09-07 19:15:29 +00:00 
						 
				 
			
				
					
						
							
							
								Stefano Sabatini 
							
						 
					 
					
						
						
							
						
						6ce9b4310c 
					 
					
						
						
							
							Remove use of the deprecated function avcodec_check_dimensions(), use  
						
						... 
						
						
						
						av_check_image_size() instead.
Originally committed as revision 24711 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2010-08-06 09:37:04 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						ba87f0801d 
					 
					
						
						
							
							Remove explicit filename from Doxygen @file commands.  
						
						... 
						
						
						
						Passing an explicit filename to this command is only necessary if the
documentation in the @file block refers to a file different from the
one the block resides in.
Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2010-04-20 14:45:34 +00:00 
						 
				 
			
				
					
						
							
							
								Stefano Sabatini 
							
						 
					 
					
						
						
							
						
						72415b2adb 
					 
					
						
						
							
							Define AVMediaType enum, and use it instead of enum CodecType, which  
						
						... 
						
						
						
						is deprecated and will be dropped at the next major bump.
Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2010-03-30 23:30:55 +00:00 
						 
				 
			
				
					
						
							
							
								Måns Rullgård 
							
						 
					 
					
						
						
							
						
						3aab27b459 
					 
					
						
						
							
							Remove useless #include <unistd.h> from many files  
						
						... 
						
						
						
						Originally committed as revision 19499 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2009-07-22 23:37:53 +00:00 
						 
				 
			
				
					
						
							
							
								Thilo Borgmann 
							
						 
					 
					
						
						
							
						
						7a00bbad21 
					 
					
						
						
							
							Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an  
						
						... 
						
						
						
						AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows
passing of packet-specific flags from demuxer to decoder, such as the keyframe
flag, which appears necessary to playback corePNG P-frames.
Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread
"Google Summer of Code participation" on the mailinglist.
Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2009-04-07 15:59:50 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						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 
						
						
					 
					
						2009-02-01 02:00:19 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						6a5d31ac25 
					 
					
						
						
							
							Fix build: Add intreadwrite.h and bswap.h #includes where necessary.  
						
						... 
						
						
						
						Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2009-01-11 22:19:48 +00:00 
						 
				 
			
				
					
						
							
							
								Stefano Sabatini 
							
						 
					 
					
						
						
							
						
						fe4bf37455 
					 
					
						
						
							
							Make AVCodec long_names definition conditional depending on CONFIG_SMALL.  
						
						... 
						
						
						
						Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2008-06-12 21:50:13 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						f4433de9ef 
					 
					
						
						
							
							consistency cosmetics: indices --> indexes  
						
						... 
						
						
						
						Originally committed as revision 13444 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2008-05-26 23:14:25 +00:00 
						 
				 
			
				
					
						
							
							
								Stefano Sabatini 
							
						 
					 
					
						
						
							
						
						bcdb2378f7 
					 
					
						
						
							
							Add long names to some AVCodec declarations.  
						
						... 
						
						
						
						patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13022 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2008-04-29 21:31:21 +00:00 
						 
				 
			
				
					
						
							
							
								Zuxy Meng 
							
						 
					 
					
						
						
							
						
						98a6fff98c 
					 
					
						
						
							
							Apply 'cold' attribute to init/uninit functions in libavcodec  
						
						... 
						
						
						
						Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2008-03-21 03:11:20 +00:00 
						 
				 
			
				
					
						
							
							
								Mike Melanson 
							
						 
					 
					
						
						
							
						
						32c3047cac 
					 
					
						
						
							
							These video decoders do not need to include and initialize the DSP  
						
						... 
						
						
						
						support functions.
Originally committed as revision 12406 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2008-03-10 03:07:44 +00:00 
						 
				 
			
				
					
						
							
							
								Michael Niedermayer 
							
						 
					 
					
						
						
							
						
						cea9642014 
					 
					
						
						
							
							Fix  ;;  
						
						... 
						
						
						
						Originally committed as revision 12153 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2008-02-19 22:09:08 +00:00 
						 
				 
			
				
					
						
							
							
								Michael Niedermayer 
							
						 
					 
					
						
						
							
						
						473dde1700 
					 
					
						
						
							
							const  
						
						... 
						
						
						
						Originally committed as revision 11789 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2008-02-01 16:13:16 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						e5a389a1b7 
					 
					
						
						
							
							license header consistency cosmetics  
						
						... 
						
						
						
						Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2007-07-05 10:40:25 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						2029f312e8 
					 
					
						
						
							
							Remove redundant #inclusion of common.h, avcodec.h already #includes it.  
						
						... 
						
						
						
						Originally committed as revision 8967 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2007-05-10 09:00:44 +00:00 
						 
				 
			
				
					
						
							
							
								Nicholas Tung 
							
						 
					 
					
						
						
							
						
						e4141433ea 
					 
					
						
						
							
							Get rid of unnecessary pointer casts.  
						
						... 
						
						
						
						patch by Nicholas Tung, ntung ntung com
Originally committed as revision 8687 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2007-04-08 20:24:16 +00:00 
						 
				 
			
				
					
						
							
							
								Nicholas Tung 
							
						 
					 
					
						
						
							
						
						587d07227e 
					 
					
						
						
							
							Remove superfluous setting of has_b_frames in codecs without B-frames.  
						
						... 
						
						
						
						patch by Nicholas Tung, ntung ntung com
Originally committed as revision 8647 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2007-04-07 17:37:30 +00:00 
						 
				 
			
				
					
						
							
							
								Alex Beregszaszi 
							
						 
					 
					
						
						
							
						
						fead30d444 
					 
					
						
						
							
							rename BE/LE_8/16/32 to AV_RL/B_8/16/32  
						
						... 
						
						
						
						Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2007-01-19 22:12:59 +00:00 
						 
				 
			
				
					
						
							
							
								Kostya Shishkov 
							
						 
					 
					
						
						
							
						
						7667896a36 
					 
					
						
						
							
							VQA v1 support  
						
						... 
						
						
						
						Originally committed as revision 7183 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2006-11-29 05:40:37 +00:00 
						 
				 
			
				
					
						
							
							
								Kostya Shishkov 
							
						 
					 
					
						
						
							
						
						7504e4fa1d 
					 
					
						
						
							
							Correct information in header  
						
						... 
						
						
						
						Originally committed as revision 7178 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2006-11-28 05:34:28 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						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 
						
						
					 
					
						2006-10-07 15:30:46 +00:00 
						 
				 
			
				
					
						
							
							
								Michael Niedermayer 
							
						 
					 
					
						
						
							
						
						3129f3bd0f 
					 
					
						
						
							
							palette (if we memcpy it into AVFrame) must be uint32_t  
						
						... 
						
						
						
						Originally committed as revision 6399 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2006-09-30 23:49:09 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						5509bffa88 
					 
					
						
						
							
							Update licensing information: The FSF changed postal address.  
						
						... 
						
						
						
						Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2006-01-12 22:43:26 +00:00 
						 
				 
			
				
					
						
							
							
								Diego Biurrun 
							
						 
					 
					
						
						
							
						
						115329f160 
					 
					
						
						
							
							COSMETICS: Remove all trailing whitespace.  
						
						... 
						
						
						
						Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2005-12-17 18:14:38 +00:00 
						 
				 
			
				
					
						
							
							
								Michael Niedermayer 
							
						 
					 
					
						
						
							
						
						0ecca7a49f 
					 
					
						
						
							
							various security fixes and precautionary checks  
						
						... 
						
						
						
						Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2005-01-12 00:16:25 +00:00 
						 
				 
			
				
					
						
							
							
								Mike Melanson 
							
						 
					 
					
						
						
							
						
						3a278992bd 
					 
					
						
						
							
							remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->  
						
						... 
						
						
						
						MKTAG/MKBETAG
Originally committed as revision 2886 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2004-03-14 04:04:08 +00:00 
						 
				 
			
				
					
						
							
							
								Michel Bardiaux 
							
						 
					 
					
						
						
							
						
						9b87956678 
					 
					
						
						
							
							av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)  
						
						... 
						
						
						
						Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2003-11-03 13:26:22 +00:00 
						 
				 
			
				
					
						
							
							
								Mike Melanson 
							
						 
					 
					
						
						
							
						
						2a2bbcb05f 
					 
					
						
						
							
							revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)  
						
						... 
						
						
						
						Originally committed as revision 2451 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2003-10-30 05:40:58 +00:00 
						 
				 
			
				
					
						
							
							
								Mike Melanson 
							
						 
					 
					
						
						
							
						
						b3a5d0039c 
					 
					
						
						
							
							support a few more types of VQA files  
						
						... 
						
						
						
						Originally committed as revision 2349 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2003-10-11 01:11:29 +00:00 
						 
				 
			
				
					
						
							
							
								Mike Melanson 
							
						 
					 
					
						
						
							
						
						cafa66af8e 
					 
					
						
						
							
							added solid color vectors; basic PAL8, 4x2-vector video (as in  
						
						... 
						
						
						
						Command & Conquer) looks great now; also added compressed codebook
support, but files using these (Lands of Lore) are not correct yet
Originally committed as revision 2344 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2003-10-04 17:47:22 +00:00 
						 
				 
			
				
					
						
							
							
								Mike Melanson 
							
						 
					 
					
						
						
							
						
						6955a88293 
					 
					
						
						
							
							first pass at a VQA video decoder  
						
						... 
						
						
						
						Originally committed as revision 2332 to svn://svn.ffmpeg.org/ffmpeg/trunk 
						
						
					 
					
						2003-10-02 05:20:07 +00:00