[FFmpeg-cvslog] r21103 - trunk/libavcodec/alsdec.c

thilo.borgmann subversion
Fri Jan 8 20:53:43 CET 2010


Author: thilo.borgmann
Date: Fri Jan  8 20:53:42 2010
New Revision: 21103

Log:
Change local variable type from unsigned int to int in order to
fix a fate test error for gcc 4.2.x introduced in revision 21069.

Modified:
   trunk/libavcodec/alsdec.c

Modified: trunk/libavcodec/alsdec.c
==============================================================================
--- trunk/libavcodec/alsdec.c	Fri Jan  8 20:40:10 2010	(r21102)
+++ trunk/libavcodec/alsdec.c	Fri Jan  8 20:53:42 2010	(r21103)
@@ -724,7 +724,7 @@ static int decode_var_block_data(ALSDecC
     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;



More information about the ffmpeg-cvslog mailing list