mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
cast size to int64_t to avoid overflow
Originally committed as revision 18991 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3bbcd0bb8a
commit
db5dc02bd7
1 changed files with 1 additions and 1 deletions
|
|
@ -600,7 +600,7 @@ static int get_audio_frame_size(AVCodecContext *enc, int size)
|
|||
/* used for example by ADPCM codecs */
|
||||
if (enc->bit_rate == 0)
|
||||
return -1;
|
||||
frame_size = (size * 8 * enc->sample_rate) / enc->bit_rate;
|
||||
frame_size = ((int64_t)size * 8 * enc->sample_rate) / enc->bit_rate;
|
||||
}
|
||||
} else {
|
||||
frame_size = enc->frame_size;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue