[cvs] / xvidcore / src / xvid.c Repository:
ViewVC logotype

Log of /xvidcore/src/xvid.c

Parent Directory Parent Directory


Links to HEAD: (view) (download) (annotate)
Links to dev-api-4: (view) (download) (annotate)
Sticky Tag:

Revision 1.45.2.26 - (view) (download) (annotate) - [selected]
Sat Dec 20 22:20:54 2003 UTC (20 years, 3 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.25: +5 -2 lines
Diff to previous 1.45.2.25 , to branch point 1.45 , to next main 1.86
Added ARGB colorspace (C code only)

Revision 1.45.2.25 - (view) (download) (annotate) - [select for diffs]
Wed Dec 17 17:07:38 2003 UTC (20 years, 3 months ago) by Isibaar
Branch: dev-api-4
Changes since 1.45.2.24: +1 -2 lines
Diff to previous 1.45.2.24 , to branch point 1.45 , to selected 1.45.2.26
some quality improvements for postprocessing

Revision 1.45.2.24 - (view) (download) (annotate) - [select for diffs]
Sat Dec 13 00:04:09 2003 UTC (20 years, 3 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.23: +4 -7 lines
Diff to previous 1.45.2.23 , to branch point 1.45 , to selected 1.45.2.26
- Enabled SSE2 safe code
- Aligned data in xvid_bench

Revision 1.45.2.23 - (view) (download) (annotate) - [select for diffs]
Thu Dec 11 17:18:29 2003 UTC (20 years, 3 months ago) by Isibaar
Branch: dev-api-4
Changes since 1.45.2.22: +3 -1 lines
Diff to previous 1.45.2.22 , to branch point 1.45 , to selected 1.45.2.26
oops, forgot a call to init_postproc()

Revision 1.45.2.22 - (view) (download) (annotate) - [select for diffs]
Sun Nov 30 16:13:15 2003 UTC (20 years, 4 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.21: +0 -2 lines
Diff to previous 1.45.2.21 , to branch point 1.45 , to selected 1.45.2.26
* 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 1.45.2.21 - (view) (download) (annotate) - [select for diffs]
Sat Nov 29 17:26:12 2003 UTC (20 years, 4 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.20: +1 -1 lines
Diff to previous 1.45.2.20 , to branch point 1.45 , to selected 1.45.2.26
Marking the start of beta1

Revision 1.45.2.20 - (view) (download) (annotate) - [select for diffs]
Thu Nov 13 23:11:24 2003 UTC (20 years, 4 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.19: +9 -7 lines
Diff to previous 1.45.2.19 , to branch point 1.45 , to selected 1.45.2.26
MMXed the calculation of SSE for 8x8 16bit blocks. This helps quite
a lot VHQ=4 mode.

My tests show with trellis:chroma_me:
  - ~20% speed improvement for vhq=4.
  - at least 5% when using vhq=1.

Of course this speedup vanishes if more CPU intensive features are
used. CruNcher who used gmc/qpel, noticed "only" a ~5% speed
improvement.

NB: i'm of course talking about overall speed improvement. Such a
small patch for such a big improvement :-)

Revision 1.45.2.19 - (view) (download) (annotate) - [select for diffs]
Sun Nov 2 23:02:52 2003 UTC (20 years, 4 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.18: +1 -1 lines
Diff to previous 1.45.2.18 , to branch point 1.45 , to selected 1.45.2.26
* Added Dmitry SSE2 iDCT code back.
* Plugged Dmitry iDCT as default for SSE2
* Fixed a bug in xvid_bench that was making it would test some CPU
  instruction set w/o host CPU support. xvidcore init was simply
  discarding irrelevant cpu flags.

Revision 1.45.2.18 - (view) (download) (annotate) - [select for diffs]
Wed Oct 29 12:41:41 2003 UTC (20 years, 5 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.17: +5 -1 lines
Diff to previous 1.45.2.17 , to branch point 1.45 , to selected 1.45.2.26
* Added sse2 f/iDCT code from skal
* Added hooking in xvid.c

Revision 1.45.2.17 - (view) (download) (annotate) - [select for diffs]
Mon Oct 27 01:03:06 2003 UTC (20 years, 5 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.16: +3 -7 lines
Diff to previous 1.45.2.16 , to branch point 1.45 , to selected 1.45.2.26
* Ported the ffmpeg fDCT functions (mmx and xmm).
* Modified the skal's versions a bit to allow rolling loops.
* Activated Skal's fDCTs (unrolled versions) for mmx _and_ xmm
  (old code was ignoring xmm versions)
* Removed the SSE2 versions (they'll be back later)
* .data -> .rodata
* Applied announced asm CodingStyle to the dct dir
  (I'll have to add a section with the said CodingStyle)

Revision 1.45.2.16 - (view) (download) (annotate) - [select for diffs]
Tue Oct 7 13:02:35 2003 UTC (20 years, 5 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.15: +38 -412 lines
Diff to previous 1.45.2.15 , to branch point 1.45 , to selected 1.45.2.26
Quantization namespace and API changes

Revision 1.45.2.15 - (view) (download) (annotate) - [select for diffs]
Wed Oct 1 23:23:01 2003 UTC (20 years, 6 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.14: +10 -10 lines
Diff to previous 1.45.2.14 , to branch point 1.45 , to selected 1.45.2.26
removed trailing spaces

Revision 1.45.2.14 - (view) (download) (annotate) - [select for diffs]
Sat Aug 23 15:11:23 2003 UTC (20 years, 7 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.13: +2 -2 lines
Diff to previous 1.45.2.13 , to branch point 1.45 , to selected 1.45.2.26
basic fixes so everything sohould build fine on every platform

Revision 1.45.2.13 - (view) (download) (annotate) - [select for diffs]
Fri Aug 22 15:52:35 2003 UTC (20 years, 7 months ago) by Isibaar
Branch: dev-api-4
Changes since 1.45.2.12: +14 -4 lines
Diff to previous 1.45.2.12 , to branch point 1.45 , to selected 1.45.2.26
qpel mmx MC code

Revision 1.45.2.12 - (view) (download) (annotate) - [select for diffs]
Sat Aug 2 15:08:30 2003 UTC (20 years, 8 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.11: +3 -3 lines
Diff to previous 1.45.2.11 , to branch point 1.45 , to selected 1.45.2.26
API changes

Revision 1.45.2.11 - (view) (download) (annotate) - [select for diffs]
Wed Jul 16 23:00:08 2003 UTC (20 years, 8 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.10: +3 -3 lines
Diff to previous 1.45.2.10 , to branch point 1.45 , to selected 1.45.2.26
Fixed quant4_intra_xmm and quant_intra_3dne bug for DC<0.

Revision 1.45.2.10 - (view) (download) (annotate) - [select for diffs]
Mon Jul 14 12:40:16 2003 UTC (20 years, 8 months ago) by syskin
Branch: dev-api-4
Changes since 1.45.2.9: +3 -3 lines
Diff to previous 1.45.2.9 , to branch point 1.45 , to selected 1.45.2.26
two buggy asm functions disabled - please enable when fixed

Revision 1.45.2.9 - (view) (download) (annotate) - [select for diffs]
Thu Jul 10 17:39:51 2003 UTC (20 years, 8 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.8: +1 -2 lines
Diff to previous 1.45.2.8 , to branch point 1.45 , to selected 1.45.2.26
IA64 updates

Revision 1.45.2.8 - (view) (download) (annotate) - [select for diffs]
Wed Jun 11 14:10:40 2003 UTC (20 years, 9 months ago) by Isibaar
Branch: dev-api-4
Changes since 1.45.2.7: +2 -6 lines
Diff to previous 1.45.2.7 , to branch point 1.45 , to selected 1.45.2.26
switched back to Walken idct

Revision 1.45.2.7 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 19:42:08 2003 UTC (20 years, 9 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.6: +9 -4 lines
Diff to previous 1.45.2.6 , to branch point 1.45 , to selected 1.45.2.26
Activated simple_idct for MMX - Backward compatibility with bistream version 9 ensures the use of the standard idct_mmx function

Revision 1.45.2.6 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 13:51:17 2003 UTC (20 years, 9 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.5: +3 -1 lines
Diff to previous 1.45.2.5 , to branch point 1.45 , to selected 1.45.2.26
Added legal header

Revision 1.45.2.5 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 01:16:57 2003 UTC (20 years, 9 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.4: +4 -2 lines
Diff to previous 1.45.2.4 , to branch point 1.45 , to selected 1.45.2.26
ISO C89 comment style

Revision 1.45.2.4 - (view) (download) (annotate) - [select for diffs]
Sat May 17 13:26:42 2003 UTC (20 years, 10 months ago) by suxen_drol
Branch: dev-api-4
Changes since 1.45.2.3: +10 -2 lines
Diff to previous 1.45.2.3 , to branch point 1.45 , to selected 1.45.2.26
* dynamic bvop decision stats bug fixed
* added runtime debug level option. this only only activated when _DEBUG is defined.
  level is specified globaly, via "xvid_glb_init_t.debug" and XVID_DEBUG_xxx defines.
  references to previous DPRINTF_LEVEL_xxx's have been replaced throughout libxvidcore
* futher bitrate zone fixes for plugin_2pass2.c
* removed old ratecontrol.c from msvc project
* xvid_encraw.c specifc:
  * added "-max_key_interval integer" option
  * renamed -debug to -vop_debug
  * added "-debug integer" option, which sets xvid_gbl_init_t.debug field
  * s/length/len/ status line
* vfw specific:
  * zone/bitrate typos fixed ("you eediot")
  * renamed "debug" regkey to "vop_debug"
  * added "debug" regeky and textbox which sets xvid_gbl_init_t.debug field

Revision 1.45.2.3 - (view) (download) (annotate) - [select for diffs]
Thu Apr 10 13:05:54 2003 UTC (20 years, 11 months ago) by edgomez
Branch: dev-api-4
Changes since 1.45.2.2: +2 -2 lines
Diff to previous 1.45.2.2 , to branch point 1.45 , to selected 1.45.2.26
2003-04-10 GMT	Edouard Gomez <ed.gomez@free.fr>	patch-14

    Summary:
      Removed all ABS() macros.
    Revision:
      xvidcore--devapi4--1.0--patch-14

    All  ABS   macros  have   been  replace  with   their  stdlib.h/math.h
    equivalent. This gives a 33%  overall speedup for the plain C encoder,
    while the  ia32 one seems to  suffer a small speed  loss. However this
    speed loss is  very small and it  seems it depends on the  CPU type as
    the abs/fabs usage  is impacting badly on sad  functions but impacting
    well on interpolate functions ... weird inst'it ?

    modified files:
     src/bitstream/mbcoding.c src/global.h src/image/image.c
     src/motion/motion_comp.c src/motion/motion_est.c
     src/motion/sad.c src/prediction/mbprediction.c
     src/utils/mbtransquant.c src/xvid.c

Revision 1.45.2.2 - (view) (download) (annotate) - [select for diffs]
Wed Mar 26 11:01:03 2003 UTC (21 years ago) by suxen_drol
Branch: dev-api-4
Changes since 1.45.2.1: +2 -2 lines
Diff to previous 1.45.2.1 , to branch point 1.45 , to selected 1.45.2.26
xvid_enc_rc_t removed

Revision 1.45.2.1 - (view) (download) (annotate) - [select for diffs]
Sat Feb 22 08:49:44 2003 UTC (21 years, 1 month ago) by suxen_drol
Branch: dev-api-4
Changes since 1.45: +77 -65 lines
Diff to previous 1.45 , to selected 1.45.2.26
++api v1.-127.0

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Fri Feb 21 00:00:57 2003 UTC (21 years, 1 month ago) by edgomez
Branch: MAIN
Branch point for: Isibaar, dev-api-4
Changes since 1.44: +6 -4 lines
Diff to previous 1.44 , to selected 1.45.2.26
- better fix

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Thu Feb 20 22:46:18 2003 UTC (21 years, 1 month ago) by edgomez
Branch: MAIN
Changes since 1.43: +62 -18 lines
Diff to previous 1.43 , to selected 1.45.2.26
- Fixes a couple of portability issues
- Activates tests even for plain C version

ToDo: Move tests flags to the xvid.h file and _document_ them.

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Wed Feb 19 21:13:00 2003 UTC (21 years, 1 month ago) by edgomez
Branch: MAIN
Changes since 1.42: +20 -34 lines
Diff to previous 1.42 , to selected 1.45.2.26
ANSI C'ification

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Sun Feb 16 05:11:39 2003 UTC (21 years, 1 month ago) by suxen_drol
Branch: MAIN
Changes since 1.41: +4 -4 lines
Diff to previous 1.41 , to selected 1.45.2.26
futher portab.h, ARCH_IS_xxx fixes

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Sat Feb 15 15:22:17 2003 UTC (21 years, 1 month ago) by edgomez
Branch: MAIN
CVS Tags: merged-dev-api-3
Changes since 1.40: +654 -133 lines
Diff to previous 1.40 , to selected 1.45.2.26
Moved dev-api-3 to HEAD -- Nasty but efficient -- Merging work has been done too

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Sun Feb 9 19:32:52 2003 UTC (21 years, 1 month ago) by edgomez
Branch: MAIN
CVS Tags: release-0_9_1, release-0_9_2
Branch point for: release-0_9_1-fixes
Changes since 1.39: +10 -10 lines
Diff to previous 1.39 , to selected 1.45.2.26
I made all these changes on my own working copy until i had
something really usable wihtout regressions for most users.

I think its place is now in CVS. Here is a ChangeLog summary
generated from my local patches.

base-0
    Imported xvidcore 0.9.0 into arch repository
patch-1
    Updated to current stable CVS_HEAD
patch-2
    Changed build system for Unix OSes
patch-3
    Fixes for the new build system in sources.
patch-4
    Fixed options and added the --disable-assembly option
patch-5
    Fixed a BSD checking in nasm output format.
patch-6
    Fixed the "ar" "s" option for some platforms.
patch-7
    Changed the way I add strings into variables.
patch-8
    Fixed portab.h for _DEBUG target and GCC/ICC compilers.
patch-9
    Added Altivec detection (Guillaume Morin)
patch-10
    Fixed MacOSX build.
patch-11
    Fixed WIN32/_MSC_VER confusion and updated MSVC libxvidcore.dsp project file.
patch-12
    DivX4 compatibility layer has been turned into an option (default:disable).

ToDo:
    - Fix IA64 assembly file selection.
    - Do I disable PPC assembly code ? (according to Guillaume, it needs to be updated)

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Sat Nov 16 23:38:16 2002 UTC (21 years, 4 months ago) by edgomez
Branch: MAIN
CVS Tags: release-0_9_0
Changes since 1.38: +37 -15 lines
Diff to previous 1.38 , to selected 1.45.2.26
License Change

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Wed Oct 9 14:35:57 2002 UTC (21 years, 5 months ago) by ia64p
Branch: MAIN
Changes since 1.37: +3 -3 lines
Diff to previous 1.37 , to selected 1.45.2.26
tiny ia64 fix

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Sat Sep 21 03:07:56 2002 UTC (21 years, 6 months ago) by suxen_drol
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 , to selected 1.45.2.26
pross email address updates

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Wed Sep 4 22:08:45 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.35: +2 -0 lines
Diff to previous 1.35 , to selected 1.45.2.26
Added $Id$ keyword again

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Wed Sep 4 22:07:54 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.34: +0 -6 lines
Diff to previous 1.34 , to selected 1.45.2.26
Removed BFRAME code

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Wed Sep 4 22:07:07 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.33: +8 -19 lines
Diff to previous 1.33 , to selected 1.45.2.26
Removed History, moved copyright.

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Tue Jul 23 12:59:57 2002 UTC (21 years, 8 months ago) by suxen_drol
Branch: MAIN
CVS Tags: tag-branching-20020904
Branch point for: dev-api-3
Changes since 1.32: +17 -4 lines
Diff to previous 1.32 , to selected 1.45.2.26
sad[16,8]_mmx, sad[16,8]_3dn, sad8_xmm

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Sun Jul 21 23:34:08 2002 UTC (21 years, 8 months ago) by chl
Branch: MAIN
Changes since 1.31: +2 -1 lines
Diff to previous 1.31 , to selected 1.45.2.26
bframe encoding bugfixes, ME unification

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Thu Jul 18 13:47:46 2002 UTC (21 years, 8 months ago) by suxen_drol
Branch: MAIN
Changes since 1.30: +87 -8 lines
Diff to previous 1.30 , to selected 1.45.2.26
sse/sse2 os support detection

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Tue Jul 16 11:15:15 2002 UTC (21 years, 8 months ago) by ia64p
Branch: MAIN
Changes since 1.29: +4 -1 lines
Diff to previous 1.29 , to selected 1.45.2.26
Global assembler optimization of halfpel8_refine, via inlinig of sad for ia64

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Tue Jul 9 01:48:49 2002 UTC (21 years, 8 months ago) by chenm001
Branch: MAIN
Changes since 1.28: +12 -14 lines
Diff to previous 1.28 , to selected 1.45.2.26
undo my wrong

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Tue Jul 9 01:44:44 2002 UTC (21 years, 8 months ago) by chenm001
Branch: MAIN
Changes since 1.27: +14 -12 lines
Diff to previous 1.27 , to selected 1.45.2.26
reupload

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Tue Jul 9 01:37:21 2002 UTC (21 years, 8 months ago) by chenm001
Branch: MAIN
Changes since 1.26: +12 -14 lines
Diff to previous 1.26 , to selected 1.45.2.26
fix my wrong moment ago

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Tue Jul 9 01:09:33 2002 UTC (21 years, 8 months ago) by chenm001
Branch: MAIN
Changes since 1.25: +14 -12 lines
Diff to previous 1.25 , to selected 1.45.2.26
help upload for roaming

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Sun Jul 7 13:21:34 2002 UTC (21 years, 8 months ago) by Isibaar
Branch: MAIN
Changes since 1.24: +5 -1 lines
Diff to previous 1.24 , to selected 1.45.2.26
Skal's tweaked dequant functions

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Sun Jul 7 09:38:13 2002 UTC (21 years, 8 months ago) by Isibaar
Branch: MAIN
Changes since 1.23: +5 -2 lines
Diff to previous 1.23 , to selected 1.45.2.26
split mmx,xmm,3dnow,sse2 code into different files, SMP fix, Skal's tweaked asm code

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Wed Jun 26 15:59:51 2002 UTC (21 years, 9 months ago) by ia64p
Branch: MAIN
Changes since 1.22: +1 -5 lines
Diff to previous 1.22 , to selected 1.45.2.26
fixing a problem with check_cpu_features, that prevents compiling of the codec on platforms other than x86.

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sun Jun 23 19:48:06 2002 UTC (21 years, 9 months ago) by edgomez
Branch: MAIN
Changes since 1.21: +3 -1 lines
Diff to previous 1.21 , to selected 1.45.2.26
- transfer_8to16sub2_mmx activation
- Compile fixes (a missing image/font.h ???)
- Linux Makefile update to take care of last changes in feature
constants

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Sun Jun 23 03:58:32 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.20: +14 -7 lines
Diff to previous 1.20 , to selected 1.45.2.26
XVID_GLOBAL_*, XVID_CPU_CHKONLY, timestamp fix, font.c

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Fri Jun 21 16:12:47 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.19: +7 -1 lines
Diff to previous 1.19 , to selected 1.45.2.26
bframes patch

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Sun Jun 16 19:53:44 2002 UTC (21 years, 9 months ago) by edgomez
Branch: MAIN
Changes since 1.18: +4 -1 lines
Diff to previous 1.18 , to selected 1.45.2.26
- Added transfer_8to16sub2_xmm (B frames compensation)

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Fri Jun 14 13:27:52 2002 UTC (21 years, 9 months ago) by Isibaar
Branch: MAIN
Changes since 1.17: +27 -1 lines
Diff to previous 1.17 , to selected 1.45.2.26
ia64 changes

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Thu Jun 13 21:35:01 2002 UTC (21 years, 9 months ago) by edgomez
Branch: MAIN
Changes since 1.16: +38 -38 lines
Diff to previous 1.16 , to selected 1.45.2.26
Cosmetic

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Thu Jun 13 13:18:57 2002 UTC (21 years, 9 months ago) by edgomez
Branch: MAIN
Changes since 1.15: +164 -95 lines
Diff to previous 1.15 , to selected 1.45.2.26
Added comments, documented all returned values

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Wed Jun 12 20:38:40 2002 UTC (21 years, 9 months ago) by edgomez
Branch: MAIN
Changes since 1.14: +45 -35 lines
Diff to previous 1.14 , to selected 1.45.2.26
Cosmetic - CodingStyle Applied - Legal Headers will be added later

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Thu May 2 22:35:08 2002 UTC (21 years, 11 months ago) by Isibaar
Branch: MAIN
Changes since 1.13: +11 -7 lines
Diff to previous 1.13 , to selected 1.45.2.26
sse2 idct/fdct

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Wed Apr 24 12:21:43 2002 UTC (21 years, 11 months ago) by h
Branch: MAIN
Changes since 1.12: +6 -2 lines
Diff to previous 1.12 , to selected 1.45.2.26
sse2 quant_intra/dequant_intra/dev16/(faster)sad16

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Wed Apr 17 10:54:19 2002 UTC (21 years, 11 months ago) by h
Branch: MAIN
Changes since 1.11: +7 -0 lines
Diff to previous 1.11 , to selected 1.45.2.26
beginnings of sse2 support (disabled)

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Sat Apr 13 16:30:01 2002 UTC (21 years, 11 months ago) by suxen_drol
Branch: MAIN
Changes since 1.10: +2 -0 lines
Diff to previous 1.10 , to selected 1.45.2.26
bframe "support" code

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Thu Apr 11 10:18:39 2002 UTC (21 years, 11 months ago) by canard
Branch: MAIN
Changes since 1.9: +3 -0 lines
Diff to previous 1.9 , to selected 1.45.2.26
PPC update

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Thu Apr 4 13:57:55 2002 UTC (21 years, 11 months ago) by Isibaar
Branch: MAIN
CVS Tags: xvidcore
Changes since 1.8: +3 -1 lines
Diff to previous 1.8 , to selected 1.45.2.26
reworked vlc tables

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Sat Mar 30 00:58:20 2002 UTC (22 years ago) by canard
Branch: MAIN
Changes since 1.7: +3 -0 lines
Diff to previous 1.7 , to selected 1.45.2.26
SAD in Altivec

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Thu Mar 28 15:52:46 2002 UTC (22 years ago) by canard
Branch: MAIN
Changes since 1.6: +2 -0 lines
Diff to previous 1.6 , to selected 1.45.2.26
dct altivec

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Wed Mar 27 12:58:29 2002 UTC (22 years ago) by canard
Branch: MAIN
Changes since 1.5: +4 -0 lines
Diff to previous 1.5 , to selected 1.45.2.26
first bits of Altivec support

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Thu Mar 21 23:59:48 2002 UTC (22 years ago) by canard
Branch: MAIN
Changes since 1.4: +3 -0 lines
Diff to previous 1.4 , to selected 1.45.2.26
Added first PPC asm port

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Sun Mar 17 13:00:50 2002 UTC (22 years ago) by h
Branch: MAIN
Changes since 1.3: +1 -0 lines
Diff to previous 1.3 , to selected 1.45.2.26
added 3dnow hv interpolation

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Sun Mar 17 08:20:02 2002 UTC (22 years ago) by h
Branch: MAIN
Changes since 1.2: +2 -0 lines
Diff to previous 1.2 , to selected 1.45.2.26
added interpolate8x8_halfpel_hv_xmm

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Sat Mar 16 15:52:50 2002 UTC (22 years ago) by Isibaar
Branch: MAIN
Changes since 1.1: +0 -4 lines
Diff to previous 1.1 , to selected 1.45.2.26
removed init_timer

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Fri Mar 8 02:44:33 2002 UTC (22 years ago) by Isibaar
Branch: MAIN
Branch point for: core
Diff to selected 1.45.2.26
Initial revision

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4