Log of /branches/release-1_3-branch/xvidcore/src/prediction
Directory Listing
Revision
1925 -
Directory Listing
Modified
Mon Dec 27 16:39:33 2010 UTC (12 years, 3 months ago) by
This commit was manufactured by cvs2svn to create branch
'release-1_3-branch'.
Revision
1632 -
Directory Listing
Modified
Tue Sep 13 12:12:15 2005 UTC (17 years, 6 months ago) by
suxen_drol
Original Path:
trunk/xvidcore/src/prediction
Field interlaced decoding, contributed by Christoph Kuehnel
decoder.c
=========
- Some new defines for DIV
- <decoder_mb_decode> modified: had wrong address offsets for interlaced
- <decoder_mbinter_field> = new function for interlaced
- <get_motion_vector_interlaced> = new function for interlaced motion vector prediction
- <decoder_pframe> modified so that it differs between frame and field prediction
global.h
========
- For field motion prediction MACORBLOCK has new member that is the average of
field1 and field2 motion vector = <mvs_avg>
xvid.c
======
- For field predicted macroblocks we need new field oriented transfer functions.
For colour calculations they may only process 4 lines (one field from the colour
macroblock that is 8x8). So I introduced 4 new function pointers:
<transfer8x4_copy, interpolate8x4_ ...)
mbcoding.c
==========
- _DEBUG code; index is checked against 64
interpolate8x8.[c,h,asm]
===========================
- New 8x4 functions
mbpredicition.[c,h]
===============
- New function <get_pmv2_interlaced> for interlaced prediciton according to spec
mem_transfer.[c,h,asm]
==============
- New 8x4 function
Revision
139 -
Directory Listing
Modified
Thu Apr 25 20:39:02 2002 UTC (20 years, 11 months ago) by
chl
Original Path:
trunk/xvidcore/src/prediction
Re-Added get_pmv() for returning median predictor only without all the
other stuff like neighbours and SAD values.
Revision
78 -
Directory Listing
Modified
Thu Mar 28 20:57:25 2002 UTC (21 years ago) by
edgomez
Original Path:
trunk/xvidcore/src/prediction
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.