Disable ANSI color code until we figured out how to detect ANSI support in
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 22 Apr 2010 20:39:34 +0000 (20:39 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 22 Apr 2010 20:39:34 +0000 (20:39 +0000)
the used terminal.

Originally committed as revision 22948 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/log.c

index 1a8f306..3d4d1d0 100644 (file)
@@ -40,11 +40,11 @@ int av_log_level = AV_LOG_INFO;
 #undef fprintf
 static void colored_fputs(int color, const char *str){
     if(isatty(2)){
-        fprintf(stderr, "\033[%dm\033[3%dm", color>>4, color&15);
+//        fprintf(stderr, "\033[%dm\033[3%dm", color>>4, color&15);
     }
     fputs(str, stderr);
     if(isatty(2)){
-        fprintf(stderr, "\033[0m");
+  //      fprintf(stderr, "\033[0m");
     }
 }