diff options
author | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2016-12-13 00:38:25 +0100 |
---|---|---|
committer | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2016-12-14 01:06:55 +0100 |
commit | ad5807f8aa883bee5431186dc1f24c5435d722d3 (patch) | |
tree | d0d6dde8533ca046e122fe5bb7b35ee81b45cdac /libavformat/adxdec.c | |
parent | 2b0112d42d4dfc8976be20b4d9729c0e077146c6 (diff) | |
download | ffmpeg-ad5807f8aa883bee5431186dc1f24c5435d722d3.tar.gz |
avformat: fix overflows during bit rate calculation
The bit_rate field has type int64_t since commit
7404f3bdb90e6a5dcb59bc0a091e2c5c038e557d.
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Diffstat (limited to 'libavformat/adxdec.c')
-rw-r--r-- | libavformat/adxdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/adxdec.c b/libavformat/adxdec.c index 0315ecb39d..a271e2afa8 100644 --- a/libavformat/adxdec.c +++ b/libavformat/adxdec.c @@ -116,7 +116,7 @@ static int adx_read_header(AVFormatContext *s) par->codec_type = AVMEDIA_TYPE_AUDIO; par->codec_id = s->iformat->raw_codec_id; - par->bit_rate = par->sample_rate * par->channels * BLOCK_SIZE * 8LL / BLOCK_SAMPLES; + par->bit_rate = (int64_t)par->sample_rate * par->channels * BLOCK_SIZE * 8LL / BLOCK_SAMPLES; avpriv_set_pts_info(st, 64, BLOCK_SAMPLES, par->sample_rate); |