mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
vaapi_encode: Fix format specifier for bitrate logging
Same ase0df56f25d. This was accidentally reintroduced while mergingc8241e730f.
This commit is contained in:
parent
e72662e131
commit
f242e0a0ff
2 changed files with 2 additions and 2 deletions
|
|
@ -1130,7 +1130,7 @@ static av_cold int vaapi_encode_h264_configure(AVCodecContext *avctx)
|
|||
priv->fixed_qp_p = 26;
|
||||
priv->fixed_qp_b = 26;
|
||||
|
||||
av_log(avctx, AV_LOG_DEBUG, "Using constant-bitrate = %d bps.\n",
|
||||
av_log(avctx, AV_LOG_DEBUG, "Using constant-bitrate = %"PRId64" bps.\n",
|
||||
avctx->bit_rate);
|
||||
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -1190,7 +1190,7 @@ static av_cold int vaapi_encode_h265_configure(AVCodecContext *avctx)
|
|||
priv->fixed_qp_p = 30;
|
||||
priv->fixed_qp_b = 30;
|
||||
|
||||
av_log(avctx, AV_LOG_DEBUG, "Using constant-bitrate = %d bps.\n",
|
||||
av_log(avctx, AV_LOG_DEBUG, "Using constant-bitrate = %"PRId64" bps.\n",
|
||||
avctx->bit_rate);
|
||||
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue