[SCM] libav/experimental: Do not declare a counter as unsigned when it is not needed
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:26:20 UTC 2013
The following commit has been merged in the experimental branch:
commit 4ca7e74c1fd2891433c661ab4b64267e6e9cdbb0
Author: Vitor Sessak <vitor1001 at gmail.com>
Date: Tue Jul 29 18:22:31 2008 +0000
Do not declare a counter as unsigned when it is not needed
Originally committed as revision 14469 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index d4bbbb6..6930cf5 100644
--- a/libavcodec/ra288.c
+++ b/libavcodec/ra288.c
@@ -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];
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list