Mercurial > libavutil.hg
annotate log.c @ 903:b0cedb31562f libavutil
Reenable ANSI colors, use method from VLC as suggested by ramiro.
Please tell us asap if this breaks for your platform & terminal.
author | michael |
---|---|
date | Fri, 23 Apr 2010 07:33:02 +0000 |
parents | 143b937b0b03 |
children | 01dd0deb8e8d |
rev | line source |
---|---|
81 | 1 /* |
2 * log functions | |
3 * Copyright (c) 2003 Michel Bardiaux | |
4 * | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
5 * This file is part of FFmpeg. |
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
6 * |
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
81 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
81 | 11 * |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
81 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
81 | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 */ | |
21 | |
22 /** | |
899
0795a743bda1
Remove explicit filename from Doxygen @file commands.
diego
parents:
797
diff
changeset
|
23 * @file |
637 | 24 * logging functions |
81 | 25 */ |
26 | |
901 | 27 #include <unistd.h> |
81 | 28 #include "avutil.h" |
628
51e8796fe8fc
C files should #include the header files of the same name.
diego
parents:
543
diff
changeset
|
29 #include "log.h" |
81 | 30 |
797
e2fd9fd487ae
Make av_log_level static at next lavu major version bump.
ramiro
parents:
672
diff
changeset
|
31 #if LIBAVUTIL_VERSION_MAJOR > 50 |
e2fd9fd487ae
Make av_log_level static at next lavu major version bump.
ramiro
parents:
672
diff
changeset
|
32 static |
e2fd9fd487ae
Make av_log_level static at next lavu major version bump.
ramiro
parents:
672
diff
changeset
|
33 #endif |
88
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
34 int av_log_level = AV_LOG_INFO; |
81 | 35 |
903
b0cedb31562f
Reenable ANSI colors, use method from VLC as suggested by ramiro.
michael
parents:
902
diff
changeset
|
36 #if (!HAVE_ISATTY) || defined(WIN32) |
901 | 37 #define isatty(s) 0 |
38 #endif | |
39 | |
40 #undef fprintf | |
41 static void colored_fputs(int color, const char *str){ | |
42 if(isatty(2)){ | |
903
b0cedb31562f
Reenable ANSI colors, use method from VLC as suggested by ramiro.
michael
parents:
902
diff
changeset
|
43 fprintf(stderr, "\033[%dm\033[3%dm", color>>4, color&15); |
901 | 44 } |
45 fputs(str, stderr); | |
46 if(isatty(2)){ | |
903
b0cedb31562f
Reenable ANSI colors, use method from VLC as suggested by ramiro.
michael
parents:
902
diff
changeset
|
47 fprintf(stderr, "\033[0m"); |
901 | 48 } |
49 } | |
50 | |
163 | 51 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) |
81 | 52 { |
53 static int print_prefix=1; | |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
54 static int count; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
55 static char line[1024], prev[1024]; |
901 | 56 static const uint8_t color[]={0x41,0x41,0x11,0x03,9,9,9}; |
81 | 57 AVClass* avc= ptr ? *(AVClass**)ptr : NULL; |
58 if(level>av_log_level) | |
59 return; | |
60 #undef fprintf | |
61 if(print_prefix && avc) { | |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
62 snprintf(line, sizeof(line), "[%s @ %p]", avc->item_name(ptr), ptr); |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
63 }else |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
64 line[0]=0; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
65 |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
66 vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl); |
81 | 67 |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
68 print_prefix= line[strlen(line)-1] == '\n'; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
69 if(print_prefix && !strcmp(line, prev)){ |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
70 count++; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
71 return; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
72 } |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
73 if(count>0){ |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
74 fprintf(stderr, " Last message repeated %d times\n", count); |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
75 count=0; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
76 } |
901 | 77 colored_fputs(color[av_clip(level>>3, 0, 6)], line); |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
78 strcpy(prev, line); |
81 | 79 } |
80 | |
81 static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback; | |
82 | |
83 void av_log(void* avcl, int level, const char *fmt, ...) | |
84 { | |
85 va_list vl; | |
86 va_start(vl, fmt); | |
87 av_vlog(avcl, level, fmt, vl); | |
88 va_end(vl); | |
89 } | |
90 | |
91 void av_vlog(void* avcl, int level, const char *fmt, va_list vl) | |
92 { | |
93 av_log_callback(avcl, level, fmt, vl); | |
94 } | |
95 | |
96 int av_log_get_level(void) | |
97 { | |
98 return av_log_level; | |
99 } | |
100 | |
101 void av_log_set_level(int level) | |
102 { | |
103 av_log_level = level; | |
104 } | |
105 | |
106 void av_log_set_callback(void (*callback)(void*, int, const char*, va_list)) | |
107 { | |
108 av_log_callback = callback; | |
109 } |