Make sure "Last message repeated" is printed.
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 28 Jul 2010 12:08:26 +0000 (12:08 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 28 Jul 2010 12:08:26 +0000 (12:08 +0000)
Originally committed as revision 24573 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/log.c

index 9b493367e421e9576d7a940cba3f6b11d438b8ed..2e225b3b509385ce0dc5159bf1658a42d48eca68 100644 (file)
@@ -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){