]> git.sesse.net Git - ffmpeg/commitdiff
only add prefix after \n
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 3 Nov 2003 13:58:26 +0000 (13:58 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 3 Nov 2003 13:58:26 +0000 (13:58 +0000)
Originally committed as revision 2471 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/utils.c

index f5a95433d249c20d150db0d8c0754615bad2c258..ccb95f998123debf8477a16c9c97099112a17d1c 100644 (file)
@@ -780,10 +780,15 @@ static int av_log_level = AV_LOG_DEBUG;
 
 static void av_log_default_callback(AVCodecContext* avctx, int level, const char* fmt, va_list vl)
 {
+    static int print_prefix=1;
+
     if(level>av_log_level)
            return;
-    if(avctx)
+    if(avctx && print_prefix)
         fprintf(stderr, "[%s @ %p]", avctx->codec->name, avctx);
+        
+    print_prefix= (int)strstr(fmt, "\n");
+        
     vfprintf(stderr, fmt, vl);
 }