comparison ra288.c @ 7449:18fc253b4991 libavcodec

Do not declare a counter as unsigned when it is not needed
author vitor
date Tue, 29 Jul 2008 18:22:31 +0000
parents b15534513059
children 85ab7655ad4d
comparison
equal deleted inserted replaced
7448:b15534513059 7449:18fc253b4991
169 */ 169 */
170 static void do_hybrid_window(int order, int n, int non_rec, const float *in, 170 static void do_hybrid_window(int order, int n, int non_rec, const float *in,
171 float *out, float *hist, float *out2, 171 float *out, float *hist, float *out2,
172 const float *window) 172 const float *window)
173 { 173 {
174 unsigned int i; 174 int i;
175 float buffer1[order + 1]; 175 float buffer1[order + 1];
176 float buffer2[order + 1]; 176 float buffer2[order + 1];
177 float work[order + n + non_rec]; 177 float work[order + n + non_rec];
178 178
179 /* update history */ 179 /* update history */