[FFmpeg-cvslog] r14469 - trunk/libavcodec/ra288.c
vitor
subversion
Tue Jul 29 20:22:31 CEST 2008
Author: vitor
Date: Tue Jul 29 20:22:31 2008
New Revision: 14469
Log:
Do not declare a counter as unsigned when it is not needed
Modified:
trunk/libavcodec/ra288.c
Modified: trunk/libavcodec/ra288.c
==============================================================================
--- trunk/libavcodec/ra288.c (original)
+++ trunk/libavcodec/ra288.c Tue Jul 29 20:22:31 2008
@@ -171,7 +171,7 @@ static void do_hybrid_window(int order,
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];
More information about the ffmpeg-cvslog
mailing list