Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-29Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: aacenc: Fix LONG_START windowing. aacenc: Fix a bug where deinterleaved samples were stored in the wrong place. avplay: use the correct array size for stride. lavc: extend doxy for avcodec_alloc_context3(). APIchanges: mention avcodec_alloc_context()/2/3 avcodec_align_dimensions2: set only 4 linesizes, not AV_NUM_DATA_POINTERS. aacsbr: ARM NEON optimised sbrdsp functions aacsbr: align some arrays aacsbr: move some simdable loops to function pointers cosmetics: Remove extra newlines at EOF Conflicts: libavcodec/utils.c libavfilter/formats.c libavutil/mem.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-01-28cosmetics: Remove extra newlines at EOFAlex Converse
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
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
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
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
2007-06-16move definition of MB_TYPE_H261_FIL to h261.h so h261.c doesn'tMåns Rullgård
need to #include "h261data.h" Originally committed as revision 9339 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-21Split the h261.c file into separate files for the encoder, decoder and ↵Panagiotis Issaris
common stuff. Originally committed as revision 9090 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-10Remove redundant #inclusion of common.h, avcodec.h already #includes it.Diego Biurrun
Originally committed as revision 8967 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-04Move H.261 parser to its own file.Diego Biurrun
Originally committed as revision 8888 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-14kill av_mallocz_static() calls in init_rl()Michael Niedermayer
Originally committed as revision 8402 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-16throw error if unsupported resolution is used with h261Baptiste Coudurier
Originally committed as revision 7097 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-21set supported pixel formats for a few encoders (fixes crashes with grayscale)Michael Niedermayer
Originally committed as revision 6303 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-03remove redundant declarationsMåns Rullgård
Originally committed as revision 6153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-14fix codec timebase and timestampsMichael Niedermayer
Originally committed as revision 5998 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-14fix h261 parsing bugMichael Niedermayer
Originally committed as revision 5997 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-09--enable/disable parsers. Warning: some combinations are broken.Måns Rullgård
Originally committed as revision 5691 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-05-29cbp must be >0 here or we are in troubbleMichael Niedermayer
Originally committed as revision 5420 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-03-08(f)printf --> av_log conversionSteve L'Homme
taken from a patch by Steve L'Homme Originally committed as revision 5127 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-28make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)Dieter
Originally committed as revision 4905 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-07-15skip_idctMichael Niedermayer
skip_frame skip_loop_filter Originally committed as revision 4440 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-05-01switch to native time basesMichael Niedermayer
Originally committed as revision 4168 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-04-25avoid unneeded clear_blocks()Michael Niedermayer
Originally committed as revision 4157 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-04-24Ministry of English Composition, reporting for duty (and the word is ↵Mike Melanson
"skipped", not "skiped"; "skiped" would rhyme with "hyped") Originally committed as revision 4153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-01-23avoid buf_size == 0 checks in every decoderMichael Niedermayer
Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-01-03Disable encoders patch by (Gianluigi Tiesi <mplayer netfarm it>)Gianluigi Tiesi
Originally committed as revision 3797 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-11-27Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( ↵Burkhard Plaum
de>) Originally committed as revision 3717 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-11-19fix parserMichael Niedermayer
Originally committed as revision 3689 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-11-12H261 fixing and cleaning:Maarten Daniels
-corrected wrong value in mv data -set correct mb_type after adjusting index -don't use H263 loop filter when the loop filter flag is set but when using the H261 encoder -use the same unquantizer as H263 (which is optimized btw) -removed unused members in H261Context patch by (Maarten Daniels <maarten.daniels >at< luc >dot< ac >dot< be>) regression test checksum update by me Originally committed as revision 3669 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-28cleanupMichael Niedermayer
Originally committed as revision 3650 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-28simplify ff_h261_reorder_mb_indexMichael Niedermayer
Originally committed as revision 3649 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-28simplifyMichael Niedermayer
Originally committed as revision 3648 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-28fix and cleanup h261 mb_type selectionMichael Niedermayer
Originally committed as revision 3647 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-28cleanupMichael Niedermayer
Originally committed as revision 3646 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-28H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)Michael Niedermayer
Originally committed as revision 3643 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-09h.261 loop filter fixMichael Niedermayer
closes bug #1033108 Originally committed as revision 3574 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-09nonsense removialMichael Niedermayer
Originally committed as revision 3573 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-09-27lowres width/height cleanup 3rd tryMichael Niedermayer
Originally committed as revision 3522 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-09-27set AVCodecContext.width/height to the picture width/height instead of the ↵Michael Niedermayer
one stored in the bitstream (that only matters if lowres!=0) Originally committed as revision 3518 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-09-13H.261 decoder improvementsMaarten Daniels
- GOB's can exist of only MBA_STUFFING codes: it crashed before, but it is fixed now - Clearer code - Some extra checks so the decoder is more resilient against errors patch by (Maarten Daniels <maarten dot daniels at student dot luc dot ac dot be>) Originally committed as revision 3457 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-07-26arghMichael Niedermayer
Originally committed as revision 3347 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-07-22- Support empty GOB's (no mb's) and skip all mb'sChris Flerackers
- Mb's were not skipped at the end of a GOB - One value too much was used in iDCT - Chroma_qscale was not updated for mquant patch by ("Chris Flerackers" <cflerackers at androme dot be>) Originally committed as revision 3332 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-06-0110l fix by (Wolfram Gloger <wmglo at dent dot med dot uni-muenchen dot de>)Michael Niedermayer
Originally committed as revision 3184 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-05-31removing h263 specific codeMichael Niedermayer
Originally committed as revision 3179 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-05-31simplifyMichael Niedermayer
Originally committed as revision 3178 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-05-31rewrite h261 loop filterMichael Niedermayer
no malloc(64) memcpy free stuff no filter1 A->B then filter2 A->B (yes not B->A) no incorrect rouding after the 1d filter Originally committed as revision 3177 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-05-31h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac ↵Michael Niedermayer
dot be>) Originally committed as revision 3176 to svn://svn.ffmpeg.org/ffmpeg/trunk