From fd3064b65eea26eaee94ae49de0d70fa26b8c877 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 28 Jul 2010 12:08:26 +0000 Subject: [PATCH] Make sure "Last message repeated" is printed. Originally committed as revision 24573 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/log.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavutil/log.c b/libavutil/log.c index 9b493367e4..2e225b3b50 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -105,6 +105,7 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) print_prefix= line[strlen(line)-1] == '\n'; if(print_prefix && !strcmp(line, prev)){ count++; + fprintf(stderr, " Last message repeated %d times\r", count); return; } if(count>0){