mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Remove some unneeded casts of bit_rate.
This commit is contained in:
parent
c34c0e3a64
commit
724cf83f10
17 changed files with 22 additions and 22 deletions
|
|
@ -506,7 +506,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||
avctx->bit_rate * av_q2d(avctx->time_base) >
|
||||
avctx->bit_rate_tolerance) {
|
||||
av_log(avctx, AV_LOG_WARNING,
|
||||
"bitrate tolerance %d too small for bitrate %"PRId64", overriding\n", avctx->bit_rate_tolerance, (int64_t)avctx->bit_rate);
|
||||
"bitrate tolerance %d too small for bitrate %"PRId64", overriding\n", avctx->bit_rate_tolerance, avctx->bit_rate);
|
||||
avctx->bit_rate_tolerance = 5 * avctx->bit_rate * av_q2d(avctx->time_base);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue