clarify why the encoder is failing

Originally committed as revision 20556 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2009-11-19 23:28:21 +00:00
parent bf72597ef4
commit a4fcd9966b
1 changed files with 2 additions and 1 deletions

View File

@ -783,7 +783,8 @@ static int dnxhd_encode_picture(AVCodecContext *avctx, unsigned char *buf, int b
else
ret = dnxhd_encode_fast(avctx, ctx);
if (ret < 0) {
av_log(avctx, AV_LOG_ERROR, "picture could not fit ratecontrol constraints\n");
av_log(avctx, AV_LOG_ERROR,
"picture could not fit ratecontrol constraints, increase qmax\n");
return -1;
}