Commit e486cae9 authored by michael's avatar michael

ILP64 fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13513 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8e819330
......@@ -540,7 +540,7 @@ static void compute_bit_allocation(MpegAudioContext *s,
/* look for the subband with the largest signal to mask ratio */
max_sb = -1;
max_ch = -1;
max_smr = 0x80000000;
max_smr = INT_MIN;
for(ch=0;ch<s->nb_channels;ch++) {
for(i=0;i<s->sblimit;i++) {
if (smr[ch][i] > max_smr && subband_status[ch][i] != SB_NOMORE) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment