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

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

Parent Directory Parent Directory


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

Revision 1169 - (view) (download) (annotate) - [select for diffs]
Modified Fri Oct 3 16:57:55 2003 UTC (20 years, 5 months ago) by edgomez
File length: 13328 byte(s)
Diff to previous 1161 , to selected 677
Removed BIGLUT support and fixes to sysKin last commit

Revision 1161 - (view) (download) (annotate) - [select for diffs]
Modified Wed Oct 1 23:23:01 2003 UTC (20 years, 6 months ago) by edgomez
File length: 13521 byte(s)
Diff to previous 1142 , to selected 677
removed trailing spaces

Revision 1142 - (view) (download) (annotate) - [select for diffs]
Modified Wed Sep 10 22:19:00 2003 UTC (20 years, 6 months ago) by edgomez
File length: 13529 byte(s)
Diff to previous 1053 , to selected 677
Motion Estimation module splitting.

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: 13042 byte(s)
Diff to previous 1038 , to selected 677
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: 13022 byte(s)
Diff to previous 1032 , to selected 677
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: 13016 byte(s)
Diff to previous 982 , to selected 677
* 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: 13007 byte(s)
Diff to previous 949 , to selected 677
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 949 - (view) (download) (annotate) - [select for diffs]
Modified Wed Mar 26 14:56:49 2003 UTC (21 years ago) by edgomez
File length: 12986 byte(s)
Diff to previous 926 , to selected 677
Changed flags naming conventions

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: 12982 byte(s)
Diff to previous 890 , to selected 677
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: 12972 byte(s)
Diff to previous 886 , to selected 677
++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: 12975 byte(s)
Diff to previous 851 , to selected 677
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/prediction/mbprediction.c
File length: 12975 byte(s)
Diff to previous 723 , to selected 677
Moved dev-api-3 to HEAD -- Nasty but efficient -- Merging work has been done too

Revision 723 - (view) (download) (annotate) - [select for diffs]
Modified Sun Dec 15 01:21:12 2002 UTC (21 years, 3 months ago) by edgomez
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 10893 byte(s)
Diff to previous 677
Another series of warnings for aggressive compilers

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

Revision 652 - (view) (download) (annotate) - [select for diffs]
Modified Sun Nov 17 00:35:33 2002 UTC (21 years, 4 months ago) by edgomez
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 10801 byte(s)
Diff to previous 499 , to selected 677
License changed

Revision 499 - (view) (download) (annotate) - [select for diffs]
Modified Sat Sep 21 03:11:36 2002 UTC (21 years, 6 months ago) by suxen_drol
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 9773 byte(s)
Diff to previous 445 , to selected 677
pross email address updates

Revision 445 - (view) (download) (annotate) - [select for diffs]
Modified Sat Sep 7 13:43:00 2002 UTC (21 years, 6 months ago) by edgomez
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 9776 byte(s)
Diff to previous 254 , to selected 677
- Added headers
- Added copyrights
- Removed old getpmv functions

Revision 254 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jul 3 12:32:50 2002 UTC (21 years, 9 months ago) by suxen_drol
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 11518 byte(s)
Diff to previous 252 , to selected 677
get_pmv2/get_pmvdata2

Revision 252 - (view) (download) (annotate) - [select for diffs]
Modified Sun Jun 30 10:46:29 2002 UTC (21 years, 9 months ago) by suxen_drol
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 15061 byte(s)
Diff to previous 248 , to selected 677
resync patch

Revision 248 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jun 28 15:14:40 2002 UTC (21 years, 9 months ago) by suxen_drol
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 11426 byte(s)
Diff to previous 195 , to selected 677
resync support, check_cpu_features() fixed

Revision 195 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jun 12 20:38:41 2002 UTC (21 years, 9 months ago) by edgomez
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 11101 byte(s)
Diff to previous 136 , to selected 677
Cosmetic - CodingStyle Applied - Legal Headers will be added later

Revision 136 - (view) (download) (annotate) - [select for diffs]
Modified Thu Apr 25 06:55:00 2002 UTC (21 years, 11 months ago) by suxen_drol
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 11261 byte(s)
Diff to previous 78 , to selected 677
FRAMEINFO

Revision 78 - (view) (download) (annotate) - [select for diffs]
Modified Thu Mar 28 20:57:25 2002 UTC (22 years ago) by edgomez
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 11268 byte(s)
Diff to previous 3 , to selected 677
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.

Revision 3 - (view) (download) (annotate) - [select for diffs]
Added Fri Mar 8 02:46:11 2002 UTC (22 years ago) by Isibaar
Original Path: trunk/xvidcore/src/prediction/mbprediction.c
File length: 11186 byte(s)
Diff to selected 677
moved sources

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