clarify why the encoder is failing

Originally committed as revision 20556 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Baptiste Coudurier 15 years ago
parent bf72597ef4
commit a4fcd9966b
  1. 3
      libavcodec/dnxhdenc.c

@ -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;
} }

Loading…
Cancel
Save