[FFmpeg-cvslog] r13513 - trunk/libavcodec/mpegaudioenc.c
michael
subversion
Thu May 29 00:36:08 CEST 2008
Author: michael
Date: Thu May 29 00:36:08 2008
New Revision: 13513
Log:
ILP64 fix
Modified:
trunk/libavcodec/mpegaudioenc.c
Modified: trunk/libavcodec/mpegaudioenc.c
==============================================================================
--- trunk/libavcodec/mpegaudioenc.c (original)
+++ trunk/libavcodec/mpegaudioenc.c Thu May 29 00:36:08 2008
@@ -540,7 +540,7 @@ static void compute_bit_allocation(MpegA
/* 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) {
More information about the ffmpeg-cvslog
mailing list