Commit b38ee4c5 authored by lorenm's avatar lorenm

doxy comment tweaks


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8580 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4d4989fe
...@@ -103,8 +103,8 @@ static int get_flags(MotionEstContext *c, int direct, int chroma){ ...@@ -103,8 +103,8 @@ static int get_flags(MotionEstContext *c, int direct, int chroma){
+ (chroma ? FLAG_CHROMA : 0); + (chroma ? FLAG_CHROMA : 0);
} }
/*! \brief compares two blocks, which may be full macroblocks or may be /*! \brief compares a block (either a full macroblock or a partition thereof)
partitions thereof. against a proposed motion-compensated prediction of that block
*/ */
static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby, static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby,
const int size, const int h, int ref_index, int src_index, const int size, const int h, int ref_index, int src_index,
......
...@@ -1004,7 +1004,7 @@ static av_always_inline int epzs_motion_search_internal(MpegEncContext * s, int ...@@ -1004,7 +1004,7 @@ static av_always_inline int epzs_motion_search_internal(MpegEncContext * s, int
MotionEstContext * const c= &s->me; MotionEstContext * const c= &s->me;
int best[2]={0, 0}; /*!< x and y coordinates of the best motion vector. int best[2]={0, 0}; /*!< x and y coordinates of the best motion vector.
i.e. the difference between the position of the i.e. the difference between the position of the
block current being encoded and the position of block currently being encoded and the position of
the block chosen to predict it from. */ the block chosen to predict it from. */
int d; ///< the score (cmp + penalty) of any given mv int d; ///< the score (cmp + penalty) of any given mv
int dmin; /*!< the best value of d, i.e. the score int dmin; /*!< the best value of d, i.e. the score
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment