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

Log of /xvidcore/src/motion/sad.c

Parent Directory Parent Directory


Links to HEAD: (view) (download) (annotate)
Sticky Tag:

Revision 1.17.2.1 - (view) (download) (annotate) - [select for diffs]
Tue Dec 28 19:19:57 2010 UTC (13 years, 3 months ago) by Isibaar
Branch: release-1_3-branch
CVS Tags: rc1_1_3_0, release-1_3_0, release-1_3_1
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 , to next main 1.18
get rid off compiler warnings

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Tue Dec 28 19:19:43 2010 UTC (13 years, 3 months ago) by Isibaar
Branch: MAIN
CVS Tags: HEAD
Changes since 1.17: +2 -2 lines
Diff to previous 1.17
get rid off compiler warnings

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Sun Nov 28 15:18:21 2010 UTC (13 years, 4 months ago) by Isibaar
Branch: MAIN
CVS Tags: tag-branching-1_3_0
Branch point for: release-1_3-branch
Changes since 1.16: +96 -2 lines
Diff to previous 1.16
PSNRHVSM R-D optimization

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Mon Apr 12 15:49:56 2004 UTC (20 years ago) by edgomez
Branch: MAIN
CVS Tags: release-1_1_0, release-1_1_0_final, release-1_1_1-final, release-1_1_2, release-1_1_3, release-1_1_3-final, release-1_2_0, release-1_2_2, tag-branching-1_2_0
Branch point for: release-1_1-branch, release-1_2-branch
Changes since 1.15: +26 -0 lines
Diff to previous 1.15
Optmized mem transfers, h263, plane sse

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Mon Mar 22 22:36:24 2004 UTC (20 years, 1 month ago) by edgomez
Branch: MAIN
CVS Tags: release-1_0_0, release-1_0_1, release-1_0_2, release-1_0_3
Branch point for: release-1_0-branch
Changes since 1.14: +85 -75 lines
Diff to previous 1.14
xvidcore 1.0.0 rc3 merge back to HEAD

Revision 1.13.2.8 - (view) (download) (annotate) - [select for diffs]
Thu Nov 13 23:11:24 2003 UTC (20 years, 5 months ago) by edgomez
Branch: dev-api-4
Changes since 1.13.2.7: +26 -0 lines
Diff to previous 1.13.2.7 , to branch point 1.13 , to next main 1.18
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.13.2.7 - (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.13.2.6: +10 -10 lines
Diff to previous 1.13.2.6 , to branch point 1.13
removed trailing spaces

Revision 1.13.2.6 - (view) (download) (annotate) - [select for diffs]
Wed Sep 10 22:19:00 2003 UTC (20 years, 7 months ago) by edgomez
Branch: dev-api-4
Changes since 1.13.2.5: +0 -1 lines
Diff to previous 1.13.2.5 , to branch point 1.13
Motion Estimation module splitting.

Revision 1.13.2.5 - (view) (download) (annotate) - [select for diffs]
Fri Aug 22 15:20:41 2003 UTC (20 years, 8 months ago) by edgomez
Branch: dev-api-4
Changes since 1.13.2.4: +3 -5 lines
Diff to previous 1.13.2.4 , to branch point 1.13
Fix to sadv32 for real 32x32 block sad

Revision 1.13.2.4 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 13:54:46 2003 UTC (20 years, 10 months ago) by edgomez
Branch: dev-api-4
Changes since 1.13.2.3: +19 -34 lines
Diff to previous 1.13.2.3 , to branch point 1.13
Added legal header

Revision 1.13.2.3 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 01:22:52 2003 UTC (20 years, 10 months ago) by edgomez
Branch: dev-api-4
Changes since 1.13.2.2: +1 -1 lines
Diff to previous 1.13.2.2 , to branch point 1.13
ISO C89 comment style

Revision 1.13.2.2 - (view) (download) (annotate) - [select for diffs]
Thu Apr 10 13:05:54 2003 UTC (21 years ago) by edgomez
Branch: dev-api-4
Changes since 1.13.2.1: +30 -28 lines
Diff to previous 1.13.2.1 , to branch point 1.13
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.14 - (view) (download) (annotate) - [select for diffs]
Fri Mar 28 08:43:28 2003 UTC (21 years, 1 month ago) by suxen_drol
Branch: MAIN
CVS Tags: cvs-head, tag-merging-20040322
Branch point for: Isibaar
Changes since 1.13: +0 -14 lines
Diff to previous 1.13
sad cleanup

Revision 1.13.2.1 - (view) (download) (annotate) - [select for diffs]
Fri Mar 28 08:42:53 2003 UTC (21 years, 1 month ago) by suxen_drol
Branch: dev-api-4
Changes since 1.13: +0 -14 lines
Diff to previous 1.13
sad cleanup

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Sat Feb 15 15:22:19 2003 UTC (21 years, 2 months ago) by edgomez
Branch: MAIN
CVS Tags: merged-dev-api-3
Branch point for: dev-api-4
Changes since 1.12: +135 -113 lines
Diff to previous 1.12
Moved dev-api-3 to HEAD -- Nasty but efficient -- Merging work has been done too

Revision 1.7.2.3 - (view) (download) (annotate) - [select for diffs]
Sat Jan 4 06:14:33 2003 UTC (21 years, 3 months ago) by suxen_drol
Branch: dev-api-3
Changes since 1.7.2.2: +1 -1 lines
Diff to previous 1.7.2.2 , to branch point 1.7 , to next main 1.18
global.h macro cleanup
cpu_detection cleanup, XVID_CPU_ASM added
sse2 stuff enabled, femms now utilized

Revision 1.7.2.2 - (view) (download) (annotate) - [select for diffs]
Wed Dec 11 10:32:29 2002 UTC (21 years, 4 months ago) by syskin
Branch: dev-api-3
Changes since 1.7.2.1: +14 -0 lines
Diff to previous 1.7.2.1 , to branch point 1.7
motion estimation for reduced resolution p-vops

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Tue Nov 26 23:44:11 2002 UTC (21 years, 5 months 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.11: +2 -2 lines
Diff to previous 1.11
ANSI C compliancy - thx Rick Foos

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Sun Nov 17 00:32:06 2002 UTC (21 years, 5 months ago) by edgomez
Branch: MAIN
CVS Tags: release-0_9_0
Changes since 1.10: +34 -10 lines
Diff to previous 1.10
License changed

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Sat Oct 19 12:20:33 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.9: +1 -1 lines
Diff to previous 1.9
Fixed copyrights

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Sat Oct 19 11:41:11 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.8: +1 -1 lines
Diff to previous 1.8
Changed Michael Militzer to name + email (next patch will fix copyrights with the right holders)

Revision 1.7.2.1 - (view) (download) (annotate) - [select for diffs]
Mon Sep 23 20:36:02 2002 UTC (21 years, 7 months ago) by chl
Branch: dev-api-3
CVS Tags: branch-release-1-0
Changes since 1.7: +98 -64 lines
Diff to previous 1.7
sysKin Motion Estimation and minor changes to support it.
I hope it doesn't break too much...

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Fri Sep 6 16:59:47 2002 UTC (21 years, 7 months ago) by chl
Branch: MAIN
Changes since 1.7: +28 -26 lines
Diff to previous 1.7
- Update license/copyright header
- Removed history header

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

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Sun Jul 21 23:34:08 2002 UTC (21 years, 9 months ago) by chl
Branch: MAIN
Changes since 1.5: +40 -0 lines
Diff to previous 1.5
bframe encoding bugfixes, ME unification

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Wed Jun 12 20:38:40 2002 UTC (21 years, 10 months ago) by edgomez
Branch: MAIN
Changes since 1.4: +34 -28 lines
Diff to previous 1.4
Cosmetic - CodingStyle Applied - Legal Headers will be added later

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Mon May 13 19:41:20 2002 UTC (21 years, 11 months ago) by chl
Branch: MAIN
Changes since 1.3: +42 -0 lines
Diff to previous 1.3
added mean reduced SAD calculated, C version

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Sat Apr 13 16:30:02 2002 UTC (22 years ago) by suxen_drol
Branch: MAIN
Changes since 1.2: +38 -0 lines
Diff to previous 1.2
bframe "support" code

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Thu Apr 11 10:18:40 2002 UTC (22 years ago) by canard
Branch: MAIN
Changes since 1.1: +1 -0 lines
Diff to previous 1.1
PPC update

Revision 1.1.1.1 - (view) (download) (annotate) - [select for diffs] (vendor branch)
Fri Mar 8 02:44:53 2002 UTC (22 years, 1 month ago) by Isibaar
Branch: core
CVS Tags: start, xvidcore
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 , to next main 1.18
moved sources

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Fri Mar 8 02:44:53 2002 UTC (22 years, 1 month ago) by Isibaar
Branch: MAIN
Branch point for: core
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