Do not declare a counter as unsigned when it is not needed
authorVitor Sessak <vitor1001@gmail.com>
Tue, 29 Jul 2008 18:22:31 +0000 (18:22 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Tue, 29 Jul 2008 18:22:31 +0000 (18:22 +0000)
Originally committed as revision 14469 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra288.c

index d4bbbb6..6930cf5 100644 (file)
@@ -171,7 +171,7 @@ static void do_hybrid_window(int order, int n, int non_rec, const float *in,
                              float *out, float *hist, float *out2,
                              const float *window)
 {
-    unsigned int i;
+    int i;
     float buffer1[order + 1];
     float buffer2[order + 1];
     float work[order + n + non_rec];