Commit a41e1915 authored by corey's avatar corey

Add a newline to b_frame_strategy error message.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4903 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0400de95
......@@ -1066,7 +1066,7 @@ int MPV_encode_init(AVCodecContext *avctx)
}
if(avctx->b_frame_strategy && (avctx->flags&CODEC_FLAG_PASS2)){
av_log(avctx, AV_LOG_ERROR, "b_frame_strategy must be 0 on the second pass");
av_log(avctx, AV_LOG_ERROR, "b_frame_strategy must be 0 on the second pass\n");
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