]> git.sesse.net Git - ffmpeg/commitdiff
Add CR/LF to a reget_buffer warning message.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Sat, 14 Jan 2012 09:35:03 +0000 (10:35 +0100)
committerCarl Eugen Hoyos <cehoyos@ag.or.at>
Sat, 14 Jan 2012 09:35:03 +0000 (10:35 +0100)
libavcodec/utils.c

index 91c5e43c2eaedd405cb0686e3c083f15f237f6c8..219be6b7fb4c097e84096ded6365aee33b6efc29 100644 (file)
@@ -558,7 +558,7 @@ int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
     assert(s->codec_type == AVMEDIA_TYPE_VIDEO);
 
     if (pic->data[0] && (pic->width != s->width || pic->height != s->height || pic->format != s->pix_fmt)) {
-        av_log(s, AV_LOG_WARNING, "Width/height/fmt changing with reget buffer");
+        av_log(s, AV_LOG_WARNING, "Width/height/fmt changing with reget buffer\n");
         s->release_buffer(s, pic);
     }