Browse Source

lavc/vaapi_encoder_{h264,h265}: fix bad format warning

tags/n3.1
Matthieu Bouron 9 years ago
parent
commit
e0df56f25d
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavcodec/vaapi_encode_h264.c
  2. +1
    -1
      libavcodec/vaapi_encode_h265.c

+ 1
- 1
libavcodec/vaapi_encode_h264.c View File

@@ -769,7 +769,7 @@ static av_cold int vaapi_encode_h264_init_constant_bitrate(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);
return 0;
}


+ 1
- 1
libavcodec/vaapi_encode_h265.c View File

@@ -1196,7 +1196,7 @@ static av_cold int vaapi_encode_h265_init_constant_bitrate(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);
return 0;
}


Loading…
Cancel
Save