Skip to content

Commit

Permalink
doc fixes (forgot to commit)
Browse files Browse the repository at this point in the history
Originally committed as revision 1819 to svn://svn.ffmpeg.org/ffmpeg/trunk
  • Loading branch information
michaelni committed Apr 25, 2003
1 parent 516b1f8 commit 5755c27
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions libavcodec/dsputil.h
Expand Up @@ -20,6 +20,8 @@
/**
* @file dsputil.h
* DSP utils.
* note, many functions in here may use MMX which trashes the FPU state, it is
* absolutely necessary to call emms_c() between dsp & float/double code
*/

#ifndef DSPUTIL_H
Expand Down Expand Up @@ -147,7 +149,7 @@ typedef struct DSPContext {
/* maybe create an array for 16/8 functions */
/**
* Halfpel motion compensation with rounding (a+b+1)>>1.
* *pixels_tab[ 0->16x16 1->8x8 ][ xhalfpel + 2*yhalfpel ]
* *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
* @param block destination where the result is stored
* @param pixels source
* @param line_size number of bytes in a horizontal line of block
Expand All @@ -157,7 +159,7 @@ typedef struct DSPContext {

/**
* Halfpel motion compensation with rounding (a+b+1)>>1.
* *pixels_tab[ 0->16x16 1->8x8 ][ xhalfpel + 2*yhalfpel ]
* *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
* @param line_size number of bytes in a horizontal line of block
Expand All @@ -167,7 +169,7 @@ typedef struct DSPContext {

/**
* Halfpel motion compensation with no rounding (a+b)>>1.
* *pixels_tab[ 0->16x16 1->8x8 ][ xhalfpel + 2*yhalfpel ]
* *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
* @param block destination where the result is stored
* @param pixels source
* @param line_size number of bytes in a horizontal line of block
Expand All @@ -177,7 +179,7 @@ typedef struct DSPContext {

/**
* Halfpel motion compensation with no rounding (a+b)>>1.
* *pixels_tab[ 0->16x16 1->8x8 ][ xhalfpel + 2*yhalfpel ]
* *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
* @param block destination into which the result is averaged (a+b)>>1
* @param pixels source
* @param line_size number of bytes in a horizontal line of block
Expand Down

0 comments on commit 5755c27

Please sign in to comment.