summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
Commit message (Collapse)AuthorAge
* Fix typo in macro name: WARPER8_16_SQ --> WRAPPER8_16_SQ.Diego Biurrun2007-12-21
| | | | Originally committed as revision 11296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More consistent { placement.Michael Niedermayer2007-12-21
| | | | Originally committed as revision 11292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2007-12-21
| | | | Originally committed as revision 11291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ~15% faster h264_chroma_mc2/4_c() these also prevent some possible outMichael Niedermayer2007-12-21
| | | | | | of array reads. Originally committed as revision 11290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 30% faster h264_chroma_mc8_c(), this also prevents a possible out ofMichael Niedermayer2007-12-21
| | | | | | array read. Originally committed as revision 11288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add ff_ prefix to all simple_idct symbolsAurelien Jacobs2007-12-08
| | | | Originally committed as revision 11192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless #ifdefMichael Niedermayer2007-11-09
| | | | Originally committed as revision 10983 to svn://svn.ffmpeg.org/ffmpeg/trunk
* intrax8 decoder patch by "someone"Michael Niedermayer2007-11-09
| | | | Originally committed as revision 10971 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sse2 version of compute_autocorr().Loren Merritt2007-09-29
| | | | | | | 4x faster than c (somehow, even though doubles only allow 2x simd). overal flac encoding: 15-50% faster on core2, 4-11% on k8, 3-13% on p4. Originally committed as revision 10621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VIS-specific code should be enabled conditional to HAVE_VIS, not ARCH_SPARC.Diego Biurrun2007-09-23
| | | | Originally committed as revision 10559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add attribute that forces alignment of stack to functions that need it.Ramiro Polla2007-08-13
| | | | | | | | | Necessary for systems that don't align by default to 16 bytes, required by some SSE instructions. Requires GCC >= 4.2. Based on patch by Gaël Chardon. Originally committed as revision 10106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)Roman Shaposhnik2007-08-09
| | | | Originally committed as revision 10023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take care of some renames (Doxygen and function name) after the previous ↵Panagiotis Issaris2007-07-28
| | | | | | pure rename patch. Originally committed as revision 9820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* help some gcc version to optimize out those functionsAurelien Jacobs2007-07-24
| | | | Originally committed as revision 9785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert commit 9603Ivan Kalvachev2007-07-11
| | | | Originally committed as revision 9605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Integrate reference mpeg IDCT into dsputil.Ivan Kalvachev2007-07-11
| | | | Originally committed as revision 9603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2007-07-10
| | | | Originally committed as revision 9582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid linking with h263.c functions when the relevant codecsAurelien Jacobs2007-07-10
| | | | | | are not compiled in. Originally committed as revision 9581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix warningMåns Rullgård2007-07-08
| | | | Originally committed as revision 9549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make arguments to ssd_int8_vs_int16() constMåns Rullgård2007-07-08
| | | | Originally committed as revision 9548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Group all copyright and author notices together.Diego Biurrun2007-07-05
| | | | Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill some "defined but not used" warningsMåns Rullgård2007-06-16
| | | | Originally committed as revision 9332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill a warning on 64-bit machinesMåns Rullgård2007-06-16
| | | | Originally committed as revision 9331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use if() instead of #ifdef and ensure all possible optimisations are enabledAurelien Jacobs2007-06-15
| | | | Originally committed as revision 9320 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct signature of just_return().Panagiotis Issaris2007-06-15
| | | | Originally committed as revision 9315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify init preprocessor statements.Albert Lee2007-06-14
| | | | | | patch by Albert Lee, trisk+xine acm.jhu edu Originally committed as revision 9307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentPanagiotis Issaris2007-05-23
| | | | Originally committed as revision 9106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the compilation of h264idct.c optional.Panagiotis Issaris2007-05-23
| | | | Originally committed as revision 9105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make vp3dsp*.c compilation optional.Panagiotis Issaris2007-05-14
| | | | Originally committed as revision 9025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factor sum_abs_dctelem out of dct_sad, and simd it.Loren Merritt2007-05-12
| | | | | | | | | | | | | sum_abs_dctelem_* alone: core2: c=186 mmx2=39 sse2=21 ssse3=13 (cycles) k8: c=163 mmx2=33 sse2=31 p4: c=370 mmx2=60 sse2=60 dct_sad including sum_abs_dctelem_*: core2: c=405 mmx2=258 sse2=240 ssse3=232 k8: c=624 mmx2=394 sse2=392 p4: c=849 mmx2=556 sse2=556 Originally committed as revision 9001 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mmx 16-bit ssd. 2.3x faster svq1 encoding.Loren Merritt2007-03-30
| | | | Originally committed as revision 8559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The Snow DEcoding routines should be under CONFIG_SNOW_DECODER.Diego Biurrun2007-02-27
| | | | Originally committed as revision 8140 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to clip functionsReimar Döffinger2007-02-25
| | | | Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adding H.264 DCT.Panagiotis Issaris2006-12-11
| | | | Originally committed as revision 7282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improved stack misalignment warningMåns Rullgård2006-12-11
| | | | Originally committed as revision 7275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better warningMichael Niedermayer2006-12-07
| | | | Originally committed as revision 7250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_check_alignment to warn the user about a missaligned stackMichael Niedermayer2006-12-07
| | | | Originally committed as revision 7249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move copy_block* functions to dsp dsputil.hBrian Foley2006-11-26
| | | | | | | | | Patch by Brian Foley % bfoley A compsoc P nuigalway P ie % Original thread: Date: Nov 26, 2006 6:44 PM Subject: Re: [Ffmpeg-devel] [PATCH] put_mpeg4_qpel16_h_lowpass altivec, take 2 Originally committed as revision 7172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert bad checkinMåns Rullgård2006-11-14
| | | | Originally committed as revision 7044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move some CFLAGS settings away from config.* writing sectionMåns Rullgård2006-11-14
| | | | Originally committed as revision 7043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename squareTbl -> ff_squareTblMåns Rullgård2006-11-12
| | | | Originally committed as revision 6995 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename cropTbl -> ff_cropTblMåns Rullgård2006-11-12
| | | | Originally committed as revision 6992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename inverse -> ff_inverseMåns Rullgård2006-11-12
| | | | Originally committed as revision 6990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ABS macro to FFABS.Diego Biurrun2006-10-11
| | | | 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-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* approximate qpel functions: sacrifice some quality for some decoding speed. ↵Loren Merritt2006-10-01
| | | | | | enabled on B-frames with -lavdopts fast. Originally committed as revision 6412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ADI Blackfin optimizationsMichael Benjamin2006-09-16
| | | | | | patch by Michael Benjamin, neuroptik gmail com Originally committed as revision 6282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant declarationsMåns Rullgård2006-09-02
| | | | Originally committed as revision 6153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop put_vc1_qpel_pixels_tab as they won't be needed anymore.Kostya Shishkov2006-09-02
| | | | Originally committed as revision 6152 to svn://svn.ffmpeg.org/ffmpeg/trunk