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

Log of /xvidcore/src/image/image.c

Parent Directory Parent Directory


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

Revision 1.26.2.17 - (view) (download) (annotate) - [select for diffs]
Mon Feb 16 03:40:07 2004 UTC (20 years, 1 month ago) by syskin
Branch: dev-api-4
Changes since 1.26.2.16: +11 -6 lines
Diff to previous 1.26.2.16 , to branch point 1.26 , to next main 1.49
automatic workaround for dev-api-3 setedges bug

Revision 1.26.2.16 - (view) (download) (annotate) - [select for diffs]
Sat Feb 7 10:01:27 2004 UTC (20 years, 1 month ago) by chl
Branch: dev-api-4
Changes since 1.26.2.15: +2 -2 lines
Diff to previous 1.26.2.15 , to branch point 1.26
Fixed typo in XVID_CSP_YVYU (thanks to Ivan Kalvachev)

Revision 1.26.2.15 - (view) (download) (annotate) - [select for diffs]
Sun Feb 1 11:32:33 2004 UTC (20 years, 2 months ago) by chl
Branch: dev-api-4
Changes since 1.26.2.14: +5 -5 lines
Diff to previous 1.26.2.14 , to branch point 1.26
Restored old colorspace behaviour until naming problems are resolved.

Revision 1.26.2.14 - (view) (download) (annotate) - [select for diffs]
Fri Jan 30 18:53:50 2004 UTC (20 years, 2 months ago) by chl
Branch: dev-api-4
Changes since 1.26.2.13: +8 -8 lines
Diff to previous 1.26.2.13 , to branch point 1.26
Renamed colorspaces to match standard (MPEG's internal format is YCbCr)
Users of internal API: Please use CSP_PLANAR now instead of CSP_USER.

Revision 1.26.2.13 - (view) (download) (annotate) - [select for diffs]
Sat Dec 20 22:20:54 2003 UTC (20 years, 3 months ago) by edgomez
Branch: dev-api-4
Changes since 1.26.2.12: +17 -1 lines
Diff to previous 1.26.2.12 , to branch point 1.26
Added ARGB colorspace (C code only)

Revision 1.26.2.12 - (view) (download) (annotate) - [select for diffs]
Fri Dec 12 08:19:13 2003 UTC (20 years, 3 months ago) by chl
Branch: dev-api-4
Changes since 1.26.2.11: +12 -13 lines
Diff to previous 1.26.2.11 , to branch point 1.26
I thought I had commited this days or weeks ago?!?

Colorspace fix, internal format is YCrCb==CSP_I420
CSP_USER is YCrCb with arbitrary pointers and strides for Luma and Chroma

Revision 1.26.2.11 - (view) (download) (annotate) - [select for diffs]
Wed Nov 5 16:15:47 2003 UTC (20 years, 4 months ago) by edgomez
Branch: dev-api-4
Changes since 1.26.2.10: +15 -14 lines
Diff to previous 1.26.2.10 , to branch point 1.26
Patch from syskin.

* This patch avoids calling setedges and interpolate for uneeded cases:
    - setedges is only called once per frame.
    - interpolate is called only when the previous rounding
      was different from the one needed.
* Interpolation has been optimized a bit for qpel case, we do the
  hv pass down to top to use the cache more efficiently (hope so).

Revision 1.26.2.10 - (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.26.2.9: +33 -33 lines
Diff to previous 1.26.2.9 , to branch point 1.26
removed trailing spaces

Revision 1.26.2.9 - (view) (download) (annotate) - [select for diffs]
Mon Sep 29 00:30:31 2003 UTC (20 years, 6 months ago) by edgomez
Branch: dev-api-4
Changes since 1.26.2.8: +10 -5 lines
Diff to previous 1.26.2.8 , to branch point 1.26
Memory leaks fixed.

Revision 1.26.2.8 - (view) (download) (annotate) - [select for diffs]
Mon Aug 25 15:01:51 2003 UTC (20 years, 7 months ago) by edgomez
Branch: dev-api-4
Changes since 1.26.2.7: +7 -1 lines
Diff to previous 1.26.2.7 , to branch point 1.26
Wrong frame padding

Revision 1.26.2.7 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 13:53:50 2003 UTC (20 years, 9 months ago) by edgomez
Branch: dev-api-4
Changes since 1.26.2.6: +20 -46 lines
Diff to previous 1.26.2.6 , to branch point 1.26
Added legal header

Revision 1.26.2.6 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 01:20:17 2003 UTC (20 years, 9 months ago) by edgomez
Branch: dev-api-4
Changes since 1.26.2.5: +19 -19 lines
Diff to previous 1.26.2.5 , to branch point 1.26
ISO C89 comment style

Revision 1.26.2.5 - (view) (download) (annotate) - [select for diffs]
Thu May 22 16:35:55 2003 UTC (20 years, 10 months ago) by edgomez
Branch: dev-api-4
Changes since 1.26.2.4: +1 -1 lines
Diff to previous 1.26.2.4 , to branch point 1.26
Removed this annoying \n from DPRINTF output. DPRINTF behaves
now like usual printf.

Just for fun, i decided to exercice my regexp skills:

for i in `find . -name "*.c"` ; do
     sed s/'\(DPRINTF(XVID_DEBUG.*\)"\([^"]\+[^\\][^n]\)"\(.*\)$'/'\1"\2\\n"\3'/g $i > $i.tmp;
     mv $i.tmp $i
done

Nice isn't it ? It just adds a \n to every DPRINTF call that
was relying on old behavior (automatic trailing \n).

Revision 1.26.2.4 - (view) (download) (annotate) - [select for diffs]
Sat May 17 13:36:18 2003 UTC (20 years, 10 months ago) by suxen_drol
Branch: dev-api-4
Changes since 1.26.2.3: +1 -1 lines
Diff to previous 1.26.2.3 , to branch point 1.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.26.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.26.2.2: +3 -3 lines
Diff to previous 1.26.2.2 , to branch point 1.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.26.2.2 - (view) (download) (annotate) - [select for diffs]
Sun Mar 16 12:04:14 2003 UTC (21 years ago) by suxen_drol
Branch: dev-api-4
Changes since 1.26.2.1: +3 -13 lines
Diff to previous 1.26.2.1 , to branch point 1.26
dquant cleanup
xvid_pluing_lumimasking added
xvid_encraw -lumimasking option added

Revision 1.26.2.1 - (view) (download) (annotate) - [select for diffs]
Sat Feb 22 08:49:45 2003 UTC (21 years, 1 month ago) by suxen_drol
Branch: dev-api-4
Changes since 1.26: +64 -117 lines
Diff to previous 1.26
++api v1.-127.0

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Sat Feb 15 15:22:18 2003 UTC (21 years, 1 month ago) by edgomez
Branch: MAIN
CVS Tags: cvs-head, merged-dev-api-3, tag-merging-20040322
Branch point for: Isibaar, dev-api-4
Changes since 1.25: +662 -142 lines
Diff to previous 1.25
Moved dev-api-3 to HEAD -- Nasty but efficient -- Merging work has been done too

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

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

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Wed Sep 25 23:37:09 2002 UTC (21 years, 6 months ago) by h
Branch: MAIN
Changes since 1.22: +1 -18 lines
Diff to previous 1.22
removed incomplete field-mv support

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sat Sep 7 09:04:41 2002 UTC (21 years, 6 months ago) by chl
Branch: MAIN
Changes since 1.21: +0 -63 lines
Diff to previous 1.21
Removed B-frames

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Fri Sep 6 17:37:07 2002 UTC (21 years, 6 months ago) by chl
Branch: MAIN
Changes since 1.20: +28 -37 lines
Diff to previous 1.20
- Update license/copyright header
- Removed history header

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Wed Sep 4 03:45:45 2002 UTC (21 years, 6 months ago) by h
Branch: MAIN
CVS Tags: tag-branching-20020904
Branch point for: dev-api-3
Changes since 1.19: +6 -6 lines
Diff to previous 1.19
interlacing bugfix (edging behaviour)

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Sun Jul 21 03:30:25 2002 UTC (21 years, 8 months ago) by suxen_drol
Branch: MAIN
Changes since 1.18: +4 -4 lines
Diff to previous 1.18
output_slice() msvc compiler fix

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Fri Jul 19 11:15:21 2002 UTC (21 years, 8 months ago) by albeu
Branch: MAIN
Changes since 1.17: +35 -0 lines
Diff to previous 1.17
Add 'per slice' rendering aka DR method 2

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Fri Jun 21 16:12:48 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.16: +0 -2 lines
Diff to previous 1.16
bframes patch

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Thu Jun 20 14:05:58 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.15: +2 -1 lines
Diff to previous 1.15
bframe patch

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: +299 -286 lines
Diff to previous 1.14
Cosmetic - CodingStyle Applied - Legal Headers will be added later

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Mon May 6 03:51:43 2002 UTC (21 years, 10 months ago) by chenm001
Branch: MAIN
Changes since 1.13: +1 -1 lines
Diff to previous 1.13
fix some my B-frame decode error

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Wed May 1 13:00:02 2002 UTC (21 years, 11 months ago) by suxen_drol
Branch: MAIN
Changes since 1.12: +70 -6 lines
Diff to previous 1.12
#define BFRAMES

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Thu Apr 25 06:55:00 2002 UTC (21 years, 11 months ago) by suxen_drol
Branch: MAIN
Changes since 1.11: +4 -3 lines
Diff to previous 1.11
FRAMEINFO

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Tue Apr 23 00:05:19 2002 UTC (21 years, 11 months ago) by chenm001
Branch: MAIN
Changes since 1.10: +1 -0 lines
Diff to previous 1.10
remove some compile warning

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

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Thu Apr 11 23:31:20 2002 UTC (21 years, 11 months ago) by Isibaar
Branch: MAIN
Changes since 1.8: +2 -1 lines
Diff to previous 1.8
missing math.h

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Tue Apr 9 13:35:34 2002 UTC (21 years, 11 months ago) by Isibaar
Branch: MAIN
Changes since 1.7: +36 -0 lines
Diff to previous 1.7
PSNR calc

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Fri Apr 5 14:48:26 2002 UTC (21 years, 11 months ago) by h
Branch: MAIN
CVS Tags: xvidcore
Changes since 1.6: +14 -50 lines
Diff to previous 1.6
removed interlaced edging from U, V blocks (as per spec)

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Sat Mar 30 11:17:16 2002 UTC (22 years ago) by Isibaar
Branch: MAIN
Changes since 1.5: +3 -3 lines
Diff to previous 1.5
free/xvid_free typo ;-)

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Fri Mar 29 04:25:29 2002 UTC (22 years ago) by h
Branch: MAIN
Changes since 1.4: +12 -3 lines
Diff to previous 1.4
merged image/pMBs create and destroy stuff into single if()

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Tue Mar 26 11:16:08 2002 UTC (22 years ago) by h
Branch: MAIN
Changes since 1.3: +76 -20 lines
Diff to previous 1.3
interlacing support - slow (MBDecideFieldDCT()), buggy (p-frames), incomplete (field motion prediction)

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Sun Mar 24 20:07:32 2002 UTC (22 years ago) by canard
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2
s/16/CACHE_LINE/

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Wed Mar 20 00:27:44 2002 UTC (22 years ago) by Isibaar
Branch: MAIN
Changes since 1.1: +13 -12 lines
Diff to previous 1.1
xvid_malloc/xvid_free

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Fri Mar 8 02:44:46 2002 UTC (22 years 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