diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-01-14 10:35:03 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-01-14 10:35:03 +0100 |
commit | 6ba74be511216d761eeed8e71439b6f6a65385b0 (patch) | |
tree | d5ccfe2650d779bd076ad38c2824d6a76450a302 | |
parent | a63a86fd6f2a59d99f185e6c75b13d66b7acadab (diff) | |
download | ffmpeg-6ba74be511216d761eeed8e71439b6f6a65385b0.tar.gz |
Add CR/LF to a reget_buffer warning message.
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 91c5e43c2e..219be6b7fb 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); } |