~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavutil/log.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
#if defined(_WIN32) && !defined(__MINGW32CE__)
37
37
#include <windows.h>
38
 
static const uint8_t color[] = {12,12,12,14,7,7,7};
 
38
static const uint8_t color[] = { 12, 12, 12, 14, 7, 7, 7 };
39
39
static int16_t background, attr_orig;
40
40
static HANDLE con;
41
41
#define set_color(x)  SetConsoleTextAttribute(con, background | color[x])
42
42
#define reset_color() SetConsoleTextAttribute(con, attr_orig)
43
43
#else
44
 
static const uint8_t color[]={0x41,0x41,0x11,0x03,9,9,9};
45
 
#define set_color(x)  fprintf(stderr, "\033[%d;3%dm", color[x]>>4, color[x]&15)
 
44
static const uint8_t color[] = { 0x41, 0x41, 0x11, 0x03, 9, 9, 9 };
 
45
#define set_color(x)  fprintf(stderr, "\033[%d;3%dm", color[x] >> 4, color[x]&15)
46
46
#define reset_color() fprintf(stderr, "\033[0m")
47
47
#endif
48
 
static int use_color=-1;
 
48
static int use_color = -1;
49
49
 
50
50
#undef fprintf
51
 
static void colored_fputs(int level, const char *str){
52
 
    if(use_color<0){
 
51
static void colored_fputs(int level, const char *str)
 
52
{
 
53
    if (use_color < 0) {
53
54
#if defined(_WIN32) && !defined(__MINGW32CE__)
54
55
        CONSOLE_SCREEN_BUFFER_INFO con_info;
55
56
        con = GetStdHandle(STD_ERROR_HANDLE);
56
 
        use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR");
 
57
        use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") &&
 
58
                    !getenv("AV_LOG_FORCE_NOCOLOR");
57
59
        if (use_color) {
58
60
            GetConsoleScreenBufferInfo(con, &con_info);
59
61
            attr_orig  = con_info.wAttributes;
60
62
            background = attr_orig & 0xF0;
61
63
        }
62
64
#elif HAVE_ISATTY
63
 
        use_color= !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR") &&
64
 
            (getenv("TERM") && isatty(2) || getenv("FFMPEG_FORCE_COLOR"));
 
65
        use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") &&
 
66
                    (getenv("TERM") && isatty(2) ||
 
67
                     getenv("AV_LOG_FORCE_COLOR"));
65
68
#else
66
 
        use_color= getenv("FFMPEG_FORCE_COLOR") && !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR");
 
69
        use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") &&
 
70
                   !getenv("AV_LOG_FORCE_NOCOLOR");
67
71
#endif
68
72
    }
69
73
 
70
 
    if(use_color){
 
74
    if (use_color) {
71
75
        set_color(level);
72
76
    }
73
77
    fputs(str, stderr);
74
 
    if(use_color){
 
78
    if (use_color) {
75
79
        reset_color();
76
80
    }
77
81
}
78
82
 
79
 
const char* av_default_item_name(void* ptr){
80
 
    return (*(AVClass**)ptr)->class_name;
 
83
const char *av_default_item_name(void *ptr)
 
84
{
 
85
    return (*(AVClass **) ptr)->class_name;
81
86
}
82
87
 
83
88
void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
84
89
{
85
 
    static int print_prefix=1;
 
90
    static int print_prefix = 1;
86
91
    static int count;
87
92
    static char prev[1024];
88
93
    char line[1024];
89
94
    static int is_atty;
90
 
    AVClass* avc= ptr ? *(AVClass**)ptr : NULL;
91
 
    if(level>av_log_level)
 
95
    AVClass* avc = ptr ? *(AVClass **) ptr : NULL;
 
96
    if (level > av_log_level)
92
97
        return;
93
 
    line[0]=0;
 
98
    line[0] = 0;
94
99
#undef fprintf
95
 
    if(print_prefix && avc) {
 
100
    if (print_prefix && avc) {
96
101
        if (avc->parent_log_context_offset) {
97
 
            AVClass** parent= *(AVClass***)(((uint8_t*)ptr) + avc->parent_log_context_offset);
98
 
            if(parent && *parent){
99
 
                snprintf(line, sizeof(line), "[%s @ %p] ", (*parent)->item_name(parent), parent);
 
102
            AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) +
 
103
                                   avc->parent_log_context_offset);
 
104
            if (parent && *parent) {
 
105
                snprintf(line, sizeof(line), "[%s @ %p] ",
 
106
                         (*parent)->item_name(parent), parent);
100
107
            }
101
108
        }
102
 
        snprintf(line + strlen(line), sizeof(line) - strlen(line), "[%s @ %p] ", avc->item_name(ptr), ptr);
 
109
        snprintf(line + strlen(line), sizeof(line) - strlen(line), "[%s @ %p] ",
 
110
                 avc->item_name(ptr), ptr);
103
111
    }
104
112
 
105
113
    vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl);
106
114
 
107
 
    print_prefix = strlen(line) && line[strlen(line)-1] == '\n';
 
115
    print_prefix = strlen(line) && line[strlen(line) - 1] == '\n';
108
116
 
109
117
#if HAVE_ISATTY
110
 
    if(!is_atty) is_atty= isatty(2) ? 1 : -1;
 
118
    if (!is_atty)
 
119
        is_atty = isatty(2) ? 1 : -1;
111
120
#endif
112
121
 
113
 
    if(print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strncmp(line, prev, sizeof line)){
 
122
    if (print_prefix && (flags & AV_LOG_SKIP_REPEATED) &&
 
123
        !strncmp(line, prev, sizeof line)) {
114
124
        count++;
115
 
        if(is_atty==1)
 
125
        if (is_atty == 1)
116
126
            fprintf(stderr, "    Last message repeated %d times\r", count);
117
127
        return;
118
128
    }
119
 
    if(count>0){
 
129
    if (count > 0) {
120
130
        fprintf(stderr, "    Last message repeated %d times\n", count);
121
 
        count=0;
 
131
        count = 0;
122
132
    }
123
 
    colored_fputs(av_clip(level>>3, 0, 6), line);
 
133
    colored_fputs(av_clip(level >> 3, 0, 6), line);
124
134
    av_strlcpy(prev, line, sizeof line);
125
135
}
126
136
 
127
 
static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback;
 
137
static void (*av_log_callback)(void*, int, const char*, va_list) =
 
138
    av_log_default_callback;
128
139
 
129
140
void av_log(void* avcl, int level, const char *fmt, ...)
130
141
{
131
 
    AVClass* avc= avcl ? *(AVClass**)avcl : NULL;
 
142
    AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
132
143
    va_list vl;
133
144
    va_start(vl, fmt);
134
 
    if(avc && avc->version >= (50<<16 | 15<<8 | 2) && avc->log_level_offset_offset && level>=AV_LOG_FATAL)
135
 
        level += *(int*)(((uint8_t*)avcl) + avc->log_level_offset_offset);
 
145
    if (avc && avc->version >= (50 << 16 | 15 << 8 | 2) &&
 
146
        avc->log_level_offset_offset && level >= AV_LOG_FATAL)
 
147
        level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset);
136
148
    av_vlog(avcl, level, fmt, vl);
137
149
    va_end(vl);
138
150
}
154
166
 
155
167
void av_log_set_flags(int arg)
156
168
{
157
 
    flags= arg;
 
169
    flags = arg;
158
170
}
159
171
 
160
172
void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))