Commit 20d7f45b authored by bcoudurier's avatar bcoudurier

clarify why the encoder is failing

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20556 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 29dc9416
...@@ -783,7 +783,8 @@ static int dnxhd_encode_picture(AVCodecContext *avctx, unsigned char *buf, int b ...@@ -783,7 +783,8 @@ static int dnxhd_encode_picture(AVCodecContext *avctx, unsigned char *buf, int b
else else
ret = dnxhd_encode_fast(avctx, ctx); ret = dnxhd_encode_fast(avctx, ctx);
if (ret < 0) { 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; 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