Mercurial > libavutil.hg
annotate log.c @ 171:acc949f04f7a libavutil
seems the larger rcon values are never accessed
author | michael |
---|---|
date | Sun, 14 Jan 2007 13:30:37 +0000 |
parents | dfd02ce85c5d |
children | afd1323ade1c |
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 /** | |
23 * @file log.c | |
24 * log. | |
25 */ | |
26 | |
27 #include "avutil.h" | |
28 | |
88
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
29 int av_log_level = AV_LOG_INFO; |
81 | 30 |
163 | 31 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) |
81 | 32 { |
33 static int print_prefix=1; | |
34 AVClass* avc= ptr ? *(AVClass**)ptr : NULL; | |
35 if(level>av_log_level) | |
36 return; | |
37 #undef fprintf | |
38 if(print_prefix && avc) { | |
39 fprintf(stderr, "[%s @ %p]", avc->item_name(ptr), avc); | |
40 } | |
41 #define fprintf please_use_av_log | |
42 | |
43 print_prefix= strstr(fmt, "\n") != NULL; | |
44 | |
45 vfprintf(stderr, fmt, vl); | |
46 } | |
47 | |
88
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
48 #if LIBAVUTIL_VERSION_INT < (50<<16) |
81 | 49 static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback; |
88
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
50 #else |
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
51 void (*av_vlog)(void*, int, const char*, va_list) = av_log_default_callback; |
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
52 #endif |
81 | 53 |
54 void av_log(void* avcl, int level, const char *fmt, ...) | |
55 { | |
56 va_list vl; | |
57 va_start(vl, fmt); | |
58 av_vlog(avcl, level, fmt, vl); | |
59 va_end(vl); | |
60 } | |
61 | |
88
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
62 #if LIBAVUTIL_VERSION_INT < (50<<16) |
81 | 63 void av_vlog(void* avcl, int level, const char *fmt, va_list vl) |
64 { | |
65 av_log_callback(avcl, level, fmt, vl); | |
66 } | |
67 | |
68 int av_log_get_level(void) | |
69 { | |
70 return av_log_level; | |
71 } | |
72 | |
73 void av_log_set_level(int level) | |
74 { | |
75 av_log_level = level; | |
76 } | |
77 | |
78 void av_log_set_callback(void (*callback)(void*, int, const char*, va_list)) | |
79 { | |
80 av_log_callback = callback; | |
81 } | |
88
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
82 #endif |