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
|
|
@ -125,10 +125,10 @@ static av_cold void print_enc_params(AVCodecContext *avctx,
|
|||
av_log(avctx, AV_LOG_DEBUG, " quality: %f\n", s->vbr_quality);
|
||||
} else if (s->abr) {
|
||||
av_log(avctx, AV_LOG_DEBUG, "rate control: ABR\n");
|
||||
av_log(avctx, AV_LOG_DEBUG, " bitrate: %"PRId64" bps\n", (int64_t)avctx->bit_rate);
|
||||
av_log(avctx, AV_LOG_DEBUG, " bitrate: %"PRId64" bps\n", avctx->bit_rate);
|
||||
} else {
|
||||
av_log(avctx, AV_LOG_DEBUG, "rate control: CBR\n");
|
||||
av_log(avctx, AV_LOG_DEBUG, " bitrate: %"PRId64" bps\n", (int64_t)avctx->bit_rate);
|
||||
av_log(avctx, AV_LOG_DEBUG, " bitrate: %"PRId64" bps\n", avctx->bit_rate);
|
||||
}
|
||||
av_log(avctx, AV_LOG_DEBUG, "complexity: %d\n",
|
||||
avctx->compression_level);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue