comparison alsdec.c @ 10823:d87e8f2c5c91 libavcodec

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.
author thilo.borgmann
date Fri, 08 Jan 2010 19:53:42 +0000
parents 4f614b69b4e5
children c9fb5b89e47a
comparison
equal deleted inserted replaced
10822:9ccc13d1144d 10823:d87e8f2c5c91
722 { 722 {
723 ALSSpecificConfig *sconf = &ctx->sconf; 723 ALSSpecificConfig *sconf = &ctx->sconf;
724 unsigned int block_length = bd->block_length; 724 unsigned int block_length = bd->block_length;
725 unsigned int smp = 0; 725 unsigned int smp = 0;
726 unsigned int k; 726 unsigned int k;
727 unsigned int opt_order = bd->opt_order; 727 int opt_order = bd->opt_order;
728 int sb; 728 int sb;
729 int64_t y; 729 int64_t y;
730 int32_t *quant_cof = bd->quant_cof; 730 int32_t *quant_cof = bd->quant_cof;
731 int32_t *lpc_cof = bd->lpc_cof; 731 int32_t *lpc_cof = bd->lpc_cof;
732 int32_t *raw_samples = bd->raw_samples; 732 int32_t *raw_samples = bd->raw_samples;