]> git.sesse.net Git - ffmpeg/commitdiff
Add a newline to b_frame_strategy error message.
authorCorey Hickey <bugfood-ml@fatooh.org>
Fri, 27 Jan 2006 23:24:24 +0000 (23:24 +0000)
committerCorey Hickey <bugfood-ml@fatooh.org>
Fri, 27 Jan 2006 23:24:24 +0000 (23:24 +0000)
Originally committed as revision 4903 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mpegvideo.c

index b0d9c2725338e2a2f18e8fc1c557bd93a761c516..b766f293ad32a159e85ca009a2ea908fab8cd95f 100644 (file)
@@ -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;
     }