Log of /branches/dev-api-4/xvidcore/src/quant
Directory Listing
Revision
1230 -
Directory Listing
Modified
Sun Nov 30 16:13:16 2003 UTC (19 years, 4 months ago) by
edgomez
* Thread safe MPEG4 quantization functions.
Cleaned up version of patch provided by Michael
- fixed compiling problems on gcc
- added const qualifiers every where it was possible to help C compiler
optimization.
- added the mpeg_quant_matrices param to all ASM function prototype
in comments (even if it's not used, that shows we do it deliberatly)
- forces m[intra][0][0] = 8, otherwise XviD could write invalid streams.
* Added real CRC computing in xvid_bench.c
Revision
1198 -
Directory Listing
Modified
Mon Nov 3 15:51:50 2003 UTC (19 years, 4 months ago) by
edgomez
correct .rodata alignment
Revision
1192 -
Directory Listing
Modified
Tue Oct 28 22:23:03 2003 UTC (19 years, 5 months ago) by
edgomez
* Applied same style to all asm files
* Replaced current sad sse2 operators with skal's ones
* Removed old and unused colorspace asm files
Revision
1176 -
Directory Listing
Modified
Thu Oct 9 18:50:22 2003 UTC (19 years, 5 months ago) by
edgomez
Updated assembly functions to match new API -- more to come when matrices will be part of the function parameters
Revision
1175 -
Directory Listing
Modified
Tue Oct 7 14:16:29 2003 UTC (19 years, 5 months ago) by
edgomez
Quantization namespace and API changes
Revision
1174 -
Directory Listing
Modified
Tue Oct 7 13:02:35 2003 UTC (19 years, 5 months ago) by
edgomez
Quantization namespace and API changes
Revision
1122 -
Directory Listing
Modified
Wed Aug 13 11:44:02 2003 UTC (19 years, 7 months ago) by
edgomez
Better architecture separation
Revision
1089 -
Directory Listing
Modified
Wed Jul 16 23:00:08 2003 UTC (19 years, 8 months ago) by
edgomez
Fixed quant4_intra_xmm and quant_intra_3dne bug for DC<0.
Revision
1056 -
Directory Listing
Modified
Mon Jun 9 18:07:01 2003 UTC (19 years, 9 months ago) by
edgomez
Lumimasking code moved to the plugin file
Revision
1054 -
Directory Listing
Modified
Mon Jun 9 13:55:56 2003 UTC (19 years, 9 months ago) by
edgomez
Added legal header
Revision
1053 -
Directory Listing
Modified
Mon Jun 9 01:25:19 2003 UTC (19 years, 9 months ago) by
edgomez
ISO C89 comment style
Revision
886 -
Directory Listing
Modified
Fri Feb 21 14:49:29 2003 UTC (20 years, 1 month ago) by
This commit was manufactured by cvs2svn to create branch 'dev-api-4'.
Revision
851 -
Directory Listing
Modified
Sat Feb 15 15:22:19 2003 UTC (20 years, 1 month ago) by
edgomez
Original Path:
trunk/xvidcore/src/quant
Moved dev-api-3 to HEAD -- Nasty but efficient -- Merging work has been done too
Revision
603 -
Directory Listing
Modified
Sat Oct 19 11:41:12 2002 UTC (20 years, 5 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/quant
Changed Michael Militzer to name + email (next patch will fix copyrights with the right holders)
Revision
457 -
Directory Listing
Modified
Sun Sep 8 17:28:22 2002 UTC (20 years, 6 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/quant
- removed const qualifiers because the functions do not return const matrices
(i'll change that in a later time)
Revision
447 -
Directory Listing
Modified
Sat Sep 7 14:16:13 2002 UTC (20 years, 6 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/quant
- Hmmm, i've been obliged to revert the previous patch because ofthe mmx code using the same arrays, so they need to be global. We'll have to fix that, because it's not *thread safe*.
Revision
442 -
Directory Listing
Modified
Sat Sep 7 11:21:10 2002 UTC (20 years, 6 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/quant
- header fixed
- removed history from file
- moved peter's copyright to top of file
Revision
262 -
Directory Listing
Modified
Sun Jul 7 09:45:40 2002 UTC (20 years, 8 months ago) by
Isibaar
Original Path:
trunk/xvidcore/src/quant
split mmx,xmm,3dnow,sse2 code into different files, SMP fix, Skal's tweaked asm code
Revision
224 -
Directory Listing
Modified
Wed Jun 19 08:46:57 2002 UTC (20 years, 9 months ago) by
uManiac
Original Path:
trunk/xvidcore/src/quant
ProfDrMorph's new (unoptimized) Luma Masking code:
luminance masking now works with relative values instead of absolute ones
the new code raises/lowers oberall quant for especially bright/dark frames ( Weber-Fechner law: humans see less differences in bright scenes )
every pixel with a very low lumi value is set to 0 for better compressability ( again the Weber-Fechner law; below a certain intesity humans won't see anything )
Revision
78 -
Directory Listing
Modified
Thu Mar 28 20:57:25 2002 UTC (21 years ago) by
edgomez
Original Path:
trunk/xvidcore/src/quant
Big patch, use it with care (tests done with GNU/Linux) :
- Trivial warnings in encoder.c line 282 ret1 = ret 2 = 0;
- Lot of "New line at end of file missing" warnings fixed (gcc3)
- All 2d arrays have been turned into 1d arrays
To force alignment of matrices on stack, use DECLARE_ALIGNED_MATRIX
(read portab.h)
Win32 users should give feedback.