diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-05-05 10:00:57 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-05-05 10:00:57 +0000 |
commit | eb14c7136081fc320c6dd6063318db6dd6b4e818 (patch) | |
tree | c68e72f170a464d10f25dd476a8303be7699a8b7 /libavcodec/dsputil.h | |
parent | d86053a41689e8a5ed897ef071c62ef3fcdc3655 (diff) | |
download | ffmpeg-eb14c7136081fc320c6dd6063318db6dd6b4e818.tar.gz |
doxy
Originally committed as revision 1832 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index cb45f6f2e4..8643e9ac9a 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -149,6 +149,8 @@ typedef struct DSPContext { /* maybe create an array for 16/8 functions */ /** * Halfpel motion compensation with rounding (a+b+1)>>1. + * this is an array[2][4] of motion compensation funcions for 2 + * horizontal blocksizes (8,16) and the 4 halfpel positions<br> * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] * @param block destination where the result is stored * @param pixels source @@ -159,6 +161,8 @@ typedef struct DSPContext { /** * Halfpel motion compensation with rounding (a+b+1)>>1. + * this is an array[2][4] of motion compensation funcions for 2 + * horizontal blocksizes (8,16) and the 4 halfpel positions<br> * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] * @param block destination into which the result is averaged (a+b+1)>>1 * @param pixels source @@ -169,6 +173,8 @@ typedef struct DSPContext { /** * Halfpel motion compensation with no rounding (a+b)>>1. + * this is an array[2][4] of motion compensation funcions for 2 + * horizontal blocksizes (8,16) and the 4 halfpel positions<br> * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] * @param block destination where the result is stored * @param pixels source @@ -179,6 +185,8 @@ typedef struct DSPContext { /** * Halfpel motion compensation with no rounding (a+b)>>1. + * this is an array[2][4] of motion compensation funcions for 2 + * horizontal blocksizes (8,16) and the 4 halfpel positions<br> * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] * @param block destination into which the result is averaged (a+b)>>1 * @param pixels source |