changeset 4299:ffa6f24a0c0f libavcodec

Doxygen comments about variables described by Michael here: Date: Tue, 12 Dec 2006 14:00:54 +0100 Subject: Re: [Ffmpeg-cvslog] r6876 - trunk/libavcodec/motion_est.c
author gpoirier
date Tue, 12 Dec 2006 13:41:17 +0000
parents bba6e75e026b
children 95044f594170
files motion_est.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/motion_est.c	Tue Dec 12 13:31:12 2006 +0000
+++ b/motion_est.c	Tue Dec 12 13:41:17 2006 +0000
@@ -1145,7 +1145,9 @@
 {
     MotionEstContext * const c= &s->me;
     uint8_t *pix, *ppix;
-    int sum, varc, vard, mx, my, dmin;
+    int sum, mx, my, dmin;
+    int varc;            ///< the variance of the block (sum of squared (p[y][x]-average))
+    int vard;            ///< sum of squared differences with the estimated motion vector
     int P[10][2];
     const int shift= 1+s->quarter_sample;
     int mb_type=0;