~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavutil/log.c

  • Committer: Gauvain Pocentek
  • Date: 2012-03-06 11:59:12 UTC
  • mfrom: (66.1.15 precise)
  • Revision ID: gauvain@pocentek.net-20120306115912-h9d6kt9j0l532oo5
* Merge from Ubuntu:
  - put back faac support
  - recommends apport-hooks-medibuntu
  - change Maintainer, Uploaders & Vcs-* fields.
* New upstream snapshot
* upload to unstable
* Build against external libmpeg2
* drop 51_FTBFS_arm.patch again
* no longer build depend on libcdparanoia-dev on the Hurd
* Fix FTBFS on the hurd.
  Thanks to Samuel Thibault <sthibault@debian.org> (Closes: #654974)
* Fix FTBFS on arm
* New upstream snapshot, Closes: #650339, #643621, #481807
* Imported Upstream version 1.0~rc4+svn34492
* Bump standards version
* Bump dependency on libav >= 4:0.8~, Closes: #653887
* Fix build-indep
* Build mplayer-gui again, Closes: #568514
* Drop debian/all-lang-config-mak.sh, no longer needed
* include .dfsg1 in version number
* remove get-orig-source target
* no longer prune compiler flags from the environment
* No longer advertise nor build 3fdx, mga and dxr3 backends,
  Closes: #496106, #442181, #533546
* beautify mplayer version identification string
* Brown paperbag upload.
* Next try to fix build failure on sparce after recent binutils change.
* Brown paperbag upload.
* Really fix build failure on sparc after recent binutils change.
* Properly set Replaces/Conflicts on mplayer2{,-dbg} to avoid
  file overwrite errors.
* Adjust versioning of mplayer listed in the mplayer-dbg's Depends field.
* Fix build failure on sparc after recent binutils change.
* Urgency medium bumped because of RC-level bugfix
  and speeding up x264 transition.
* Update to my @debian.org email.
* Upload to unstable
* Enable joystick support on Linux only, Closes: #638408
* Rebuild fixes toolchain issue on arm, Closes: #637077
* New upstream snapshot
* following the discussion started by Diego Biurrun <diego@biurrun.de>
  in debian-devel, I have prepared a new packaging of 'mplayer'
  (with code that comes from CVS)
* the upstream tar.bz cannot be distributed by Debian, since it contains
   CSS code; so I am repackaging it 
* I have tried my best to address all known issues:
  - the package contains the detailed Copyright made by Diego Biurrun 
  - the package does not contain CSS code, or  AFAIK other code on which 
     there is active patent enforcement
  - there is a script  debian/cvs-changelog.sh  that shows all changes
     done to files included in this source.
    This should comply with GPLv2 sec 2.a  (in spirit if not in letter)
    For this reason, the source code contains CVS directories.
* needs   make (>= 3.80) for 'html-chunked-$(1)' in DOCS/xml/Makefile

* some corrections, as suggested Diego Biurrun
  - binary codecs should go into /usr/lib/codecs (upstream default)
  - better template 'mplayer/install_codecs'
  - an empty 'font=' in mplayer.conf breaks mplayer: postinst corrected
* correction in 'mplayer/cfgnote'
* better mplayer.postinst and mplayer.config

* New upstream release
* better debian/copyright file
* do not ship a skin
* New upstream release
* changed DEB_BUILD_OPTIONS to DEB_BUILD_CONFIGURE ,
  DEB_BUILD_OPTIONS is used as in debian policy
* use gcc-3.4
* changed xlibs-dev to a long list of dependencies, for Debian/etch
* try to adhere to  http://www.mplayerhq.hu/DOCS/tech/binary-packaging.txt
  (see README.Debian for details)
* removed dependency on xlibmesa-dev, disabled opengl
* New upstream release
* Simon McVittie <hacks@pseudorandom.co.uk> wonderful work:
- Work around Debian bug #267442 (glibc's sys/uio.h and gcc's altivec.h have
  conflicting uses for __vector) by re-ordering #includes
- Fix potential symlink attack in ./configure
- Disable support for binary codecs on platforms for which those codecs
  aren't available; also disable the corresponding Debconf note when it's
  inappropriate
- Changed Build-Depends: so it works in pbuilder
- Explicitly build-depend on libjpeg62-dev, libfontconfig1-dev,
  libungif4-dev 
- Tweak debian/rules to avoid certain errors being ignored
- Use --language=all
* provide a target  'debian/rules get-orig-source' 
  that recreates the orig.tar.gz ; then use the above orig.tar.gz
* rewrote some parts of debian/rules
* don't clean and recompile docs if upstream ships them
* mplayer-doc was shipping too much stuff
* translated man pages where not installed properly
* compile with libdv4-dev
* correct README.Debian
* Forgot build-dep on libtheora
* Must not depend on libxvidcore
* New upstream release
* new release.
* rc1 to become 0.90
* new pre-release
* new pre-release
* gtk bug fixed.
* new release.
* version bumped
* 0.60 pre2 release
* 0.60 pre-release.

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))