summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libavcodec/vc2enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc2enc.c b/libavcodec/vc2enc.c
index 27db6c0..01cb6a5 100644
--- a/libavcodec/vc2enc.c
+++ b/libavcodec/vc2enc.c
@@ -1180,8 +1180,8 @@ static av_cold int vc2_encode_init(AVCodecContext *avctx)
avctx->bit_rate = av_rescale(min_bits_per_frame, avctx->time_base.den,
avctx->time_base.num);
av_log(avctx, AV_LOG_WARNING,
- "Bitrate too low, clipping to minimum = %.2lf Mbps!\n",
- (double)avctx->bit_rate/1000000.0f);
+ "Bitrate too low, clipping to minimum = %li Mbps!\n",
+ avctx->bit_rate/1000000);
}
return 0;
OpenPOWER on IntegriCloud