Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Borgmann <thilo.borgmann@googlemail.com>2010-01-08 22:53:42 +0300
committerThilo Borgmann <thilo.borgmann@googlemail.com>2010-01-08 22:53:42 +0300
commitb2f4b0433695e3c9a420ddd8d89d9ffa53f01a5a (patch)
treec3a468ff440ff01b9eedcb55c910480990919c85 /libavcodec/alsdec.c
parent261a3c2d05935420c7055472fa670a763f58740f (diff)
Change local variable type from unsigned int to int in order to
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
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r--libavcodec/alsdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index fb196ac941..6d913f3114 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -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;