Log of /xvidcore/src/encoder.c
Parent Directory
Revision
1.76.2.14 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sat Nov 2 15:52:30 2002 UTC (21 years, 10 months ago) by
chl
Branch:
dev-api-3
Changes since
1.76.2.13: +51 -29 lines
Diff to
previous 1.76.2.13
, to
branch point 1.76
Basic support for translation-only GMC support (compatible to Divx5)
use general flag XVID_GMC to switch it on, the rest is done automatically.
!!! Combination with B-frames is completely untested !!!
Revision
1.76.2.1 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Mon Sep 23 20:36:01 2002 UTC (21 years, 11 months ago) by
chl
Branch:
dev-api-3
Changes since
1.76: +59 -144 lines
Diff to
previous 1.76
sysKin Motion Estimation and minor changes to support it.
I hope it doesn't break too much...
Revision
1.73 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Aug 7 10:09:00 2002 UTC (22 years, 1 month ago) by
chl
Branch:
MAIN
Changes since
1.72: +16 -2 lines
Diff to
previous 1.72
New variable pEnc->last_sync for (more) correct time-codes in B-frames mode.
Not a 100% clean solution. NOTE: Whole Timecode management must be rewritten!
Revision
1.71 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Aug 4 22:34:49 2002 UTC (22 years, 1 month ago) by
edgomez
Branch:
MAIN
Changes since
1.70: +3 -1 lines
Diff to
previous 1.70
Fix missing symbol error when compiled without bframes support (thx monrad on IRC-opn)
Revision
1.68 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Jul 31 18:19:49 2002 UTC (22 years, 1 month ago) by
chl
Branch:
MAIN
Changes since
1.67: +17 -4 lines
Diff to
previous 1.67
First support for XVID_GREYSCALE: chroma DC is zeroed, AC is not saved.
No speed improvement, but working feature.
Revision
1.67 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Jul 30 12:14:37 2002 UTC (22 years, 1 month ago) by
chl
Branch:
MAIN
Changes since
1.66: +2 -2 lines
Diff to
previous 1.66
Modified to only drop if blockcount is _less_ than ratio instead of _less or
equa_, otherwise drops were still possible, even for drop=0 (-> bframe crash)
Revision
1.65 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jul 28 13:06:45 2002 UTC (22 years, 1 month ago) by
chl
Branch:
MAIN
Changes since
1.64: +45 -3 lines
Diff to
previous 1.64
Modified SKIP mb behaviour for Pframes when Bframes are active: Check if
intermediate B-block can be skipped, too. Check for SKIP is now done
in encode_pframe(), not in MBCoding().
Revision
1.52 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sat Jul 6 17:04:57 2002 UTC (22 years, 2 months ago) by
chl
Branch:
MAIN
Changes since
1.51: +18 -3 lines
Diff to
previous 1.51
Minor modifications for supporting multithreaded ME.
Without _SMP symbol there should be no changes in behaviour.
Revision
1.47 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jun 23 19:48:06 2002 UTC (22 years, 2 months ago) by
edgomez
Branch:
MAIN
Changes since
1.46: +1 -2 lines
Diff to
previous 1.46
- 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.45 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sat Jun 22 07:23:10 2002 UTC (22 years, 2 months ago) by
suxen_drol
Branch:
MAIN
Changes since
1.44: +3 -4 lines
Diff to
previous 1.44
minor fixes: bframe N_VOP support, custom quant bug, BFRAME inc_frame_num()
Revision
1.40 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jun 9 23:30:50 2002 UTC (22 years, 3 months ago) by
edgomez
Branch:
MAIN
Changes since
1.39: +306 -106 lines
Diff to
previous 1.39
Another bunch of 80 column cut, ANSI C comments - There's still work to do there :\
Revision
1.39 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jun 9 13:16:26 2002 UTC (22 years, 3 months ago) by
edgomez
Branch:
MAIN
Changes since
1.38: +274 -108 lines
Diff to
previous 1.38
80 Column cutting. I've put all the encoder_create cleaning code in goto statements, this is a clean way to do that job but some people don't like goto statements
Revision
1.30 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Apr 28 23:31:00 2002 UTC (22 years, 4 months ago) by
edgomez
Branch:
MAIN
Changes since
1.29: +2 -2 lines
Diff to
previous 1.29
Sad values can be negative (Christoph Lampert Post scriptum in a mail to the dev mail list)
Revision
1.13 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Thu Mar 28 20:57:24 2002 UTC (22 years, 5 months ago) by
edgomez
Branch:
MAIN
Changes since
1.12: +31 -21 lines
Diff to
previous 1.12
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
1.11 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Mar 26 11:16:08 2002 UTC (22 years, 5 months ago) by
h
Branch:
MAIN
Changes since
1.10: +12 -12 lines
Diff to
previous 1.10
interlacing support - slow (MBDecideFieldDCT()), buggy (p-frames), incomplete (field motion prediction)
Revision
1.9 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Mar 24 05:47:08 2002 UTC (22 years, 5 months ago) by
h
Branch:
MAIN
Changes since
1.8: +3 -3 lines
Diff to
previous 1.8
foxer's cbr mode
(hijacks the rc_buffersize variable and uses it as reaction delay - easier than changing xvid.h)
Revision
1.5 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sat Mar 16 09:55:19 2002 UTC (22 years, 6 months ago) by
h
Branch:
MAIN
Changes since
1.4: +2 -2 lines
Diff to
previous 1.4
prevented RateControlUpdate() being called in non-cbr encodes
(bitrate isn't 0 anymore - it's set to 900000 in encoder_create())
Revision
1.3 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sat Mar 9 14:58:50 2002 UTC (22 years, 6 months ago) by
edgomez
Branch:
MAIN
Changes since
1.2: +141 -144 lines
Diff to
previous 1.2
Small cleanup for gcc warnings and code indentation (thx emacs indent-region :-)
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.