summaryrefslogtreecommitdiffstats
path: root/libavcodec/motion_est.c
Commit message (Collapse)AuthorAgeFilesLines
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
| | | | | | | 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
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-191-1/+1
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moves mid_pred() into mathops.h (with arch specific code split by directory)Aurelien Jacobs2009-01-181-0/+1
| | | | Originally committed as revision 16681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix regression test failure with pthreads on multiprocessor systems.Michael Niedermayer2008-12-021-2/+0
| | | | | | Fixes issue517 Originally committed as revision 15976 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1000l Fix snow regression test that i broke in r15135.Michael Niedermayer2008-09-011-1/+2
| | | | Originally committed as revision 15136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn the user about me_method values that are not supported.Michael Niedermayer2008-08-311-0/+4
| | | | | | Fixes issue503 Originally committed as revision 15135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ancient code that hasnt worked in many years.Michael Niedermayer2008-07-091-257/+0
| | | | Originally committed as revision 14144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix return type of ff_init_me().Michael Niedermayer2008-05-281-1/+3
| | | | Originally committed as revision 13487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check dia size a little more. Fixes CID80.Michael Niedermayer2008-05-271-0/+6
| | | | Originally committed as revision 13481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_ prefix to all (frame)_TYPE usageAurelien Jacobs2008-03-091-2/+2
| | | | Originally committed as revision 12399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Group all copyright and author notices together.Diego Biurrun2007-07-051-2/+1
| | | | Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-121-1/+1
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-121-2/+4
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* doxy comment tweaksLoren Merritt2007-03-311-2/+2
| | | | Originally committed as revision 8580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add doxy comments, based on Loren's explanations posted here:Guillaume Poirier2007-03-311-0/+3
| | | | | | | Date: Mar 30, 2007 9:00 PM Subject: Re: [Ffmpeg-devel] Motion Estimation in snow.c for Waevelet encoded frames (DWT) Originally committed as revision 8579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to clip functionsReimar Döffinger2007-02-251-6/+6
| | | | Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* test DIRECT{0,0} too if flag mv0 is usedMichael Niedermayer2006-12-221-0/+2
| | | | | | slight PSNR/bitrate increase Originally committed as revision 7361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-12-211-2/+2
| | | | Originally committed as revision 7345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* i think this if() is useless lets abuse our users to test this ;)Michael Niedermayer2006-12-211-0/+1
| | | | Originally committed as revision 7344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip motion estimation and encoding of non direct-0,0 MBs if the next MB is ↵Michael Niedermayer2006-12-211-0/+12
| | | | | | skiped (mpeg4 doesnt allow such MBs and in the past we did ME and encoding until at the end we droped them, so this should be faster though i didnt benchmark it, benchmark welcome) Originally committed as revision 7343 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2006-12-171-1/+1
| | | | Originally committed as revision 7328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warn user if the selected diamond size is larger then the motion estimation ↵Michael Niedermayer2006-12-171-0/+6
| | | | | | score cache size Originally committed as revision 7326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* limit x/ymin/max to me_rangeMichael Niedermayer2006-12-171-0/+7
| | | | | | slight psnr/bitrate gain for most but not all files if me_range is used Originally committed as revision 7325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygen comments about variables described by Michael here:Guillaume Poirier2006-12-121-1/+3
| | | | | | | Date: Tue, 12 Dec 2006 14:00:54 +0100 Subject: Re: [Ffmpeg-cvslog] r6876 - trunk/libavcodec/motion_est.c Originally committed as revision 7288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename always_inline to av_always_inline and move to common.hMåns Rullgård2006-12-081-1/+1
| | | | Originally committed as revision 7256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmetics: cliped --> clippedDiego Biurrun2006-12-021-1/+1
| | | | Originally committed as revision 7208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new I/P frame selection heuristicMichael Niedermayer2006-11-021-17/+13
| | | | | | | PSNR/bitrate is slightly better for my (short) test videos more tests welcome ... Originally committed as revision 6876 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CANDIDATE_MB_TYPE_INTER heuristic doesnt work at really low quality where ↵Michael Niedermayer2006-10-281-1/+2
| | | | | | the distortion becomes less relevant then the overhead of intra blocks Originally committed as revision 6829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ABS macro to FFABS.Diego Biurrun2006-10-111-8/+8
| | | | Originally committed as revision 6666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix CHECK_BIDIR macro so it works with Intel's CompilerMarco Manfredini2006-08-121-1/+1
| | | | | | Patch by Marco Manfredini mldb A gmx P net Originally committed as revision 5989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* asserts to check if assumed conditions really are trueMichael Niedermayer2006-03-101-0/+2
| | | | Originally committed as revision 5143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* (f)printf --> av_log conversionSteve L'Homme2006-03-081-1/+1
| | | | | | taken from a patch by Steve L'Homme Originally committed as revision 5127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sc_factor support for encoding.Corey Hickey2006-01-221-5/+5
| | | | | | | | | | | | | | | | | Here's the description I'll add to the mplayer man page: --- Causes frames with higher quantizers to be more likely to trigger a scene change detection and make libavcodec use an I-frame (default: 1). 1-16 is a sane range. Values between 2 and 6 may yield increasing PSNR (up to approximately 0.04 dB) and better placement of I-frames in high-motion scenes. Higher values than 6 may give very slightly better PSNR (approximately 0.01 dB more than sc_factor=6), but noticably worse visual quality. --- Original idea from Michael; patch by me. Originally committed as revision 4883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-121-1/+1
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: bidir_refine didn't save the new mvs. also improve speed.Loren Merritt2006-01-091-1/+14
| | | | Originally committed as revision 4832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont discard least significant bitsMichael Niedermayer2005-12-251-34/+34
| | | | Originally committed as revision 4773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* hmm did i mess the scaling of these up at some point?Michael Niedermayer2005-12-241-5/+5
| | | | | | anyway, this change decreases bitrate and increase PSNR by ~1.00 on my test file, other files also benefit significantly Originally committed as revision 4771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l (segfault fix)Michael Niedermayer2005-12-231-12/+11
| | | | Originally committed as revision 4769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bidir refine supportMichael Niedermayer2005-12-231-3/+63
| | | | Originally committed as revision 4768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor typoMichael Niedermayer2005-12-231-3/+4
| | | | Originally committed as revision 4767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-221-116/+116
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-171-125/+125
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compilation fixes part 1 patch by (Arvind R. and Burkhard Plaum, plaum, ipf ↵Michael Niedermayer2005-08-261-2/+2
| | | | | | uni-stuttgart de) Originally committed as revision 4540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill a bunch of compiler warningsMåns Rullgård2005-08-141-2/+1
| | | | Originally committed as revision 4522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix assertion failure for mpeg2 encodingMichael Niedermayer2005-08-011-3/+1
| | | | Originally committed as revision 4488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* motion vector limit for mpeg2Michael Niedermayer2005-07-271-5/+10
| | | | Originally committed as revision 4482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling fixesDiego Biurrun2005-06-171-1/+1
| | | | | | patch by Peter Robinson pbrobinson @ at @ gmail . dot . com and myself Originally committed as revision 4382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix segfault with 'ffmpeg -i 1.avi -cmp 257 -4mv 2.avi'Michael Niedermayer2005-05-051-1/+1
| | | | Originally committed as revision 4178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ministry of English Composition, reporting for duty (and the word is ↵Mike Melanson2005-04-241-1/+1
| | | | | | "skipped", not "skiped"; "skiped" would rhyme with "hyped") Originally committed as revision 4153 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud