[FFmpeg-cvslog] vf_deshake: remove unused variable totalangles

Ray Simard git at videolan.org
Fri Jan 13 17:01:37 CET 2012


ffmpeg | branch: master | Ray Simard <rhs.ffmpeg at sylvan-glade.com> | Thu Jan 12 18:03:36 2012 -0800| [369befb41ea998c83e2cf872d996ed7534656398] | committer: Stefano Sabatini

vf_deshake: remove unused variable totalangles

Variable totalangles was created and assigned, but never used.

Signed-off-by: Ray Simard <rhs.ffmpeg at sylvan-glade.com>
Signed-off-by: Stefano Sabatini <stefasab at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=369befb41ea998c83e2cf872d996ed7534656398
---

 libavfilter/vf_deshake.c |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c
index 1464147..b752fbf 100644
--- a/libavfilter/vf_deshake.c
+++ b/libavfilter/vf_deshake.c
@@ -259,8 +259,6 @@ static void find_motion(DeshakeContext *deshake, uint8_t *src1, uint8_t *src2,
 
     int pos;
     double *angles = av_malloc(sizeof(*angles) * width * height / (16 * deshake->blocksize));
-    double totalangles = 0;
-
     int center_x = 0, center_y = 0;
     double p_x, p_y;
 
@@ -299,13 +297,6 @@ static void find_motion(DeshakeContext *deshake, uint8_t *src1, uint8_t *src2,
     center_x /= pos;
     center_y /= pos;
 
-    for (x = 0; x < pos; x++) {
-        totalangles += angles[x];
-    }
-
-    //av_log(NULL, AV_LOG_ERROR, "Angle: %lf\n", totalangles / (pos - 1));
-    t->angle = totalangles / (pos - 1);
-
     t->angle = clean_mean(angles, pos);
     if (t->angle < 0.001)
         t->angle = 0;



More information about the ffmpeg-cvslog mailing list