diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-11 13:25:10 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-11 13:25:10 +0100 |
commit | 27dfe54eb765793b1f8d8cecaed0ee1e507fcf57 (patch) | |
tree | bc5c4e3e847d6de90d30c998ab37ac91693036aa /libavcodec/libxavs.c | |
parent | a03f72e7447b98139e37480218ab5d512ac2c683 (diff) | |
download | ffmpeg-27dfe54eb765793b1f8d8cecaed0ee1e507fcf57.tar.gz |
avcodec/libxavs: fix division by 0 bitrate
Fixes CID1257655
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libxavs.c')
-rw-r--r-- | libavcodec/libxavs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/libxavs.c b/libavcodec/libxavs.c index b061259009..30d1479836 100644 --- a/libavcodec/libxavs.c +++ b/libavcodec/libxavs.c @@ -325,8 +325,9 @@ static av_cold int XAVS_init(AVCodecContext *avctx) if (avctx->level > 0) x4->params.i_level_idc = avctx->level; - x4->params.rc.f_rate_tolerance = - (float)avctx->bit_rate_tolerance/avctx->bit_rate; + if (avctx->bit_rate > 0) + x4->params.rc.f_rate_tolerance = + (float)avctx->bit_rate_tolerance/avctx->bit_rate; if ((avctx->rc_buffer_size) && (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) { |