[svn] / branches / dev-api-4 / xvidcore / src / image / image.c Repository:
ViewVC logotype

Log of /branches/dev-api-4/xvidcore/src/image/image.c

Parent Directory Parent Directory


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

Revision 1053 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jun 9 01:25:19 2003 UTC (20 years, 9 months ago) by edgomez
File length: 30143 byte(s)
Diff to previous 1038
ISO C89 comment style

Revision 1038 - (view) (download) (annotate) - [select for diffs]
Modified Thu May 22 16:36:07 2003 UTC (20 years, 10 months ago) by edgomez
File length: 30099 byte(s)
Diff to previous 1032
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 1032 - (view) (download) (annotate) - [select for diffs]
Modified Sat May 17 13:37:49 2003 UTC (20 years, 10 months ago) by suxen_drol
File length: 30097 byte(s)
Diff to previous 982
* 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 982 - (view) (download) (annotate) - [select for diffs]
Modified Thu Apr 10 13:05:54 2003 UTC (20 years, 11 months ago) by edgomez
File length: 30094 byte(s)
Diff to previous 926
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 926 - (view) (download) (annotate) - [select for diffs]
Modified Sun Mar 16 12:05:09 2003 UTC (21 years ago) by suxen_drol
File length: 30094 byte(s)
Diff to previous 890
dquant cleanup
xvid_pluing_lumimasking added
xvid_encraw -lumimasking option added

Revision 890 - (view) (download) (annotate) - [select for diffs]
Modified Sat Feb 22 08:49:45 2003 UTC (21 years, 1 month ago) by suxen_drol
File length: 30166 byte(s)
Diff to previous 886
++api v1.-127.0

Revision 886 - (view) (download) (annotate) - [select for diffs]
Modified Fri Feb 21 14:49:29 2003 UTC (21 years, 1 month ago) by
File length: 31154 byte(s)
Diff to previous 851
This commit was manufactured by cvs2svn to create branch 'dev-api-4'.

Revision 851 - (view) (download) (annotate) - [select for diffs]
Modified Sat Feb 15 15:22:19 2003 UTC (21 years, 1 month ago) by edgomez
Original Path: trunk/xvidcore/src/image/image.c
File length: 31154 byte(s)
Diff to previous 677
Moved dev-api-3 to HEAD -- Nasty but efficient -- Merging work has been done too

Revision 677 - (view) (download) (annotate) - [select for diffs]
Modified Tue Nov 26 23:44:11 2002 UTC (21 years, 4 months ago) by edgomez
Original Path: trunk/xvidcore/src/image/image.c
File length: 17095 byte(s)
Diff to previous 651
ANSI C compliancy - thx Rick Foos

Revision 651 - (view) (download) (annotate) - [select for diffs]
Modified Sun Nov 17 00:20:30 2002 UTC (21 years, 4 months ago) by edgomez
Original Path: trunk/xvidcore/src/image/image.c
File length: 17064 byte(s)
Diff to previous 541
License changed

Revision 541 - (view) (download) (annotate) - [select for diffs]
Modified Wed Sep 25 23:37:09 2002 UTC (21 years, 6 months ago) by h
Original Path: trunk/xvidcore/src/image/image.c
File length: 15974 byte(s)
Diff to previous 435
removed incomplete field-mv support

Revision 435 - (view) (download) (annotate) - [select for diffs]
Modified Sat Sep 7 09:04:41 2002 UTC (21 years, 6 months ago) by chl
Original Path: trunk/xvidcore/src/image/image.c
File length: 16640 byte(s)
Diff to previous 433
Removed B-frames

Revision 433 - (view) (download) (annotate) - [select for diffs]
Modified Fri Sep 6 17:37:07 2002 UTC (21 years, 6 months ago) by chl
Original Path: trunk/xvidcore/src/image/image.c
File length: 18116 byte(s)
Diff to previous 389
- Update license/copyright header
- Removed history header

Revision 389 - (view) (download) (annotate) - [select for diffs]
Modified Wed Sep 4 03:45:45 2002 UTC (21 years, 6 months ago) by h
Original Path: trunk/xvidcore/src/image/image.c
File length: 18339 byte(s)
Diff to previous 323
interlacing bugfix (edging behaviour)

Revision 323 - (view) (download) (annotate) - [select for diffs]
Modified Sun Jul 21 03:30:25 2002 UTC (21 years, 8 months ago) by suxen_drol
Original Path: trunk/xvidcore/src/image/image.c
File length: 18323 byte(s)
Diff to previous 315
output_slice() msvc compiler fix

Revision 315 - (view) (download) (annotate) - [select for diffs]
Added Fri Jul 19 11:15:21 2002 UTC (21 years, 8 months ago) by albeu
Original Path: trunk/xvidcore/src/image/image.c
File length: 18483 byte(s)
Add 'per slice' rendering aka DR method 2

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, 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