diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2007-03-31 23:58:33 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2007-03-31 23:58:33 +0000 |
commit | 1cfe393a25d216354567ca237b372d3a01c2579a (patch) | |
tree | 34e61c28564482bf6bd19490131eaa3e7a15ff23 /libavcodec/motion_est_template.c | |
parent | bb21f1762aee4a7f3890b0daf524a44e7db1c565 (diff) | |
download | ffmpeg-1cfe393a25d216354567ca237b372d3a01c2579a.tar.gz |
doxy comment tweaks
Originally committed as revision 8580 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/motion_est_template.c')
-rw-r--r-- | libavcodec/motion_est_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/motion_est_template.c b/libavcodec/motion_est_template.c index e014250269..37443b0226 100644 --- a/libavcodec/motion_est_template.c +++ b/libavcodec/motion_est_template.c @@ -1004,7 +1004,7 @@ static av_always_inline int epzs_motion_search_internal(MpegEncContext * s, int MotionEstContext * const c= &s->me; int best[2]={0, 0}; /*!< x and y coordinates of the best motion vector. 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. */ int d; ///< the score (cmp + penalty) of any given mv int dmin; /*!< the best value of d, i.e. the score |