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
|
|
@ -494,7 +494,7 @@ static av_cold int sipr_decoder_init(AVCodecContext * avctx)
|
|||
else ctx->mode = MODE_5k0;
|
||||
av_log(avctx, AV_LOG_WARNING,
|
||||
"Invalid block_align: %d. Mode %s guessed based on bitrate: %"PRId64"\n",
|
||||
avctx->block_align, modes[ctx->mode].mode_name, (int64_t)avctx->bit_rate);
|
||||
avctx->block_align, modes[ctx->mode].mode_name, avctx->bit_rate);
|
||||
}
|
||||
|
||||
av_log(avctx, AV_LOG_DEBUG, "Mode: %s\n", modes[ctx->mode].mode_name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue