[FFmpeg-cvslog] Add CR/LF to a reget_buffer warning message.

Carl Eugen Hoyos git at videolan.org
Sat Jan 14 10:41:24 CET 2012


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sat Jan 14 10:35:03 2012 +0100| [6ba74be511216d761eeed8e71439b6f6a65385b0] | committer: Carl Eugen Hoyos

Add CR/LF to a reget_buffer warning message.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6ba74be511216d761eeed8e71439b6f6a65385b0
---

 libavcodec/utils.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 91c5e43..219be6b 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -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);
     }
 



More information about the ffmpeg-cvslog mailing list