Commit 3ca7085a authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec: make "bitrate tolerance too small for bitrate" error more verbose

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d0004a19
......@@ -407,7 +407,7 @@ av_cold int ff_MPV_encode_init(AVCodecContext *avctx)
avctx->bit_rate * av_q2d(avctx->time_base) >
avctx->bit_rate_tolerance) {
av_log(avctx, AV_LOG_ERROR,
"bitrate tolerance too small for bitrate\n");
"bitrate tolerance %d too small for bitrate %d\n", avctx->bit_rate_tolerance, avctx->bit_rate);
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment