summaryrefslogtreecommitdiff
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-14 10:35:03 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-14 10:35:03 +0100
commit6ba74be511216d761eeed8e71439b6f6a65385b0 (patch)
treed5ccfe2650d779bd076ad38c2824d6a76450a302 /libavcodec/utils.c
parenta63a86fd6f2a59d99f185e6c75b13d66b7acadab (diff)
Add CR/LF to a reget_buffer warning message.
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c2
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);
}