Change local variable type from unsigned int to int in order to
authorThilo Borgmann <thilo.borgmann@googlemail.com>
Fri, 8 Jan 2010 19:53:42 +0000 (19:53 +0000)
committerThilo Borgmann <thilo.borgmann@googlemail.com>
Fri, 8 Jan 2010 19:53:42 +0000 (19:53 +0000)
fix a fate test error for gcc 4.1.x introduced in revision 21069.

Originally committed as revision 21103 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/alsdec.c

index fb196ac..6d913f3 100644 (file)
@@ -724,7 +724,7 @@ static int decode_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
     unsigned int block_length = bd->block_length;
     unsigned int smp = 0;
     unsigned int k;
-    unsigned int opt_order    = bd->opt_order;
+    int opt_order             = bd->opt_order;
     int sb;
     int64_t y;
     int32_t *quant_cof        = bd->quant_cof;