summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
Commit message (Collapse)AuthorAge
...
* optimize block_permute()Michael Niedermayer2002-10-23
| | | | | | | optimize dct_quantize_c() dont permute s->q_inter/intra_matrix Originally committed as revision 1067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* complete mpeg4 GMC decoding supportMichael Niedermayer2002-10-16
| | | | Originally committed as revision 1046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warning fixesMichael Niedermayer2002-10-15
| | | | Originally committed as revision 1044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* idct permutation cleanup, idct can be selected per context nowMichael Niedermayer2002-09-29
| | | | | | fixing some threadunsafe code Originally committed as revision 980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)Leon van Stuivenberg2002-09-23
| | | | Originally committed as revision 963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont store version for bit-exact testsMichael Niedermayer2002-09-14
| | | | Originally committed as revision 948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put/avg_pixels16Michael Niedermayer2002-09-11
| | | | | | fixing 2 small qpel bugs Originally committed as revision 915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway ↵Brian Foley2002-09-02
| | | | | | dot ie>) Originally committed as revision 898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* patch by Heliodoro Tammaro <helio at interactives dot org>Heliodoro Tammaro2002-08-30
| | | | | | | | - configures/builds on all darwin versions - ffserver builds on darwin (if you have the extra libraries) - builds correctly (again) on non-darwin ppc (no -faltivec in gcc-3.2) Originally committed as revision 880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* slow but accurate integer dct from IJG (should be ok with the LGPL as the ↵Michael Niedermayer2002-08-29
| | | | | | | | old DCT is the fast integer DCT from IJG) per context DCT selection Originally committed as revision 878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* first cut at altivec support on darwin patch by (Brian Foley <bfoley at ↵Brian Foley2002-08-28
| | | | | | compsoc dot nuigalway dot ie>) Originally committed as revision 875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new ratecontrol codeMichael Niedermayer2002-08-25
| | | | Originally committed as revision 862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing normal mmx idctMichael Niedermayer2002-08-02
| | | | Originally committed as revision 835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adding ff prefix to avoid global name conficts with xvid (patch by Marko ↵Marko Kreen2002-07-10
| | | | | | Kreen <marko at l-t.ee>) Originally committed as revision 739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Move "restrict" fallback to common.hFalk Hüffner2002-07-04
| | | | | | * Don't include config.h in dsputil.c Originally committed as revision 721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Detect "retrict" keywordFalk Hüffner2002-07-04
| | | | | | * Use "restrict" in some dsputil routines (yields large speedup) Originally committed as revision 716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move unaligned access macros to dsputil.h - added unaligned 32 bit storeFabrice Bellard2002-06-11
| | | | Originally committed as revision 687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added ff_idct_put/addFabrice Bellard2002-06-05
| | | | Originally committed as revision 672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid name clash with libjpeg - added missing externsFabrice Bellard2002-06-04
| | | | Originally committed as revision 660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Minor warning cleanup.Falk Hüffner2002-06-03
| | | | Originally committed as revision 654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * compatibilized declaration with its original definitionZdenek Kabelac2002-05-27
| | | | | | (though I'm not sure which one is correct - but they should match) Originally committed as revision 610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license/copyright changeFabrice Bellard2002-05-25
| | | | Originally committed as revision 599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed unused stuff - added dsputil_set_bit_exact() support for easier testingFabrice Bellard2002-05-20
| | | | Originally committed as revision 551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing alignment for alignment picky cpusMichael Niedermayer2002-05-19
| | | | Originally committed as revision 535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed useless header includes - use av memory functionsFabrice Bellard2002-05-18
| | | | Originally committed as revision 522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new hopefully faster MCMichael Niedermayer2002-05-16
| | | | Originally committed as revision 505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed mpeg4 time stuff on encodingMichael Niedermayer2002-04-17
| | | | | | | | | | | | | mpeg4 b-frame enoding support removed old, out-commented ratecontrol reuse motion compensation code between encoding & decoding prefix newly added global functions with ff_ to reduce namespace polution b-frame ME (unfinished, but working) added some comments to mpegvideo.h do MC on encoding only once if possible bugs? ;) Originally committed as revision 403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - ME setting moved to AVCodecContext/MpegEncContext, no longer a global.Juanjo2002-04-14
| | | | | | | | - EPZS ME algo used by default. - HQ flag activated for ffmpeg. - Cosmetics ... Originally committed as revision 398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpeg4 mpeg quantizer supportMichael Niedermayer2002-04-07
| | | | Originally committed as revision 381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sizeof(s->block) isnt 64*6*2 anymore bugfixMichael Niedermayer2002-03-28
| | | | | | mpeg12 decoding optimization Originally committed as revision 364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 4MV motion estimation (not finished yet)Michael Niedermayer2002-03-27
| | | | | | | | SAD functions rewritten (8x8 support & MMX2 optimizations) HQ inter/intra decission msmpeg4 encoding bugfix (MV where too long) Originally committed as revision 362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* q-pel mc fixedMichael Niedermayer2002-03-09
| | | | Originally committed as revision 321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* divx5-gmc supportMichael Niedermayer2002-03-09
| | | | | | | q-pel mc support neither is totally bugfree yet though :( Originally committed as revision 320 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'mJuanjo2002-02-26
| | | | | | | | sure it works ok. Also it's slow, so use it only when you _really_ need to measure quality. - Fix libavcodec Makefile to enable profiling. Originally committed as revision 314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* (commit by michael)Michael Niedermayer2002-01-27
| | | | | | | | | mmx & mmx2 quantizer c dct permutation bugfix dont copy input on intra only encodings if it can be avoided dont draw edges on intra only stuff Originally committed as revision 281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>Nick Kurshev2002-01-20
| | | | Originally committed as revision 274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* (commit by michael)Michael Niedermayer2002-01-17
| | | | | | faster simple idct in MMX Originally committed as revision 269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* (commit by michael)Michael Niedermayer2002-01-13
| | | | | | | dequantizers skip trailing zeros msmpeg4 non-intra decoder has its dequantizer "build in" now Originally committed as revision 260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix for non-mmx runtimedetect encoding bugs - patch by Michael Niedermayer ↵Michael Niedermayer2002-01-10
| | | | | | <michaelni@gmx.at> Originally committed as revision 250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define ↵Arpi2001-12-09
| | | | | | SIMPLE_IDCT to enable Originally committed as revision 234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlib mergeFabrice Bellard2001-09-16
| | | | Originally committed as revision 131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* arm optimizationsFabrice Bellard2001-08-13
| | | | Originally committed as revision 82 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export for imgconvert usageFabrice Bellard2001-08-11
| | | | Originally committed as revision 67 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added block permutation functionsFabrice Bellard2001-08-07
| | | | Originally committed as revision 45 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMX/MMXEXT iDCT support, using external functions currently defined in libmpeg2Arpi2001-08-03
| | | | | | | Gives average 13-20% mpeg decoding speedup on x86 systems. Originally committed as revision 30 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added emms_c() macro which should can used in c code in both mmx/non mmx casesFabrice Bellard2001-07-24
| | | | Originally committed as revision 12 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed config for direct mplayer build compatibilityFabrice Bellard2001-07-23
| | | | Originally committed as revision 8 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initial revisionFabrice Bellard2001-07-22
Originally committed as revision 5 to svn://svn.ffmpeg.org/ffmpeg/trunk