Mercurial > mplayer.hg
annotate mp_msg.h @ 14162:5f24743d1fb8
Looks like it was too weird after all ;-)
It is not used anymore and might contain more vulnerabilities, thus removed.
author | reimar |
---|---|
date | Wed, 15 Dec 2004 19:01:36 +0000 |
parents | 4802041ab8e3 |
children | 4a6b79a1ad52 |
rev | line source |
---|---|
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4044
diff
changeset
|
1 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4044
diff
changeset
|
2 #ifndef _MP_MSG_H |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4044
diff
changeset
|
3 #define _MP_MSG_H |
1566 | 4 |
14046
4802041ab8e3
Output more information about vids, aids, sids, alangs and slangs with -identify. Patch by kiriuja <mplayer-patches@en-directo.net>
mosu
parents:
13365
diff
changeset
|
5 // defined in mplayer.c and mencoder.c |
4802041ab8e3
Output more information about vids, aids, sids, alangs and slangs with -identify. Patch by kiriuja <mplayer-patches@en-directo.net>
mosu
parents:
13365
diff
changeset
|
6 extern int verbose; |
4802041ab8e3
Output more information about vids, aids, sids, alangs and slangs with -identify. Patch by kiriuja <mplayer-patches@en-directo.net>
mosu
parents:
13365
diff
changeset
|
7 extern int identify; |
1562 | 8 |
9 // verbosity elevel: | |
10 | |
13365
2d4f4444092d
Translate up to MSGL_STATUS so all normal output is translated.
diego
parents:
13122
diff
changeset
|
11 // stuff from level MSGL_FATAL-MSGL_STATUS should be translated. |
1566 | 12 |
1562 | 13 #define MSGL_FATAL 0 // will exit/abort |
1563 | 14 #define MSGL_ERR 1 // continues |
1562 | 15 #define MSGL_WARN 2 // only warning |
1566 | 16 #define MSGL_HINT 3 // short help message |
17 #define MSGL_INFO 4 // -quiet | |
18 #define MSGL_STATUS 5 // v=0 | |
19 #define MSGL_V 6 // v=1 | |
20 #define MSGL_DBG2 7 // v=2 | |
21 #define MSGL_DBG3 8 // v=3 | |
22 #define MSGL_DBG4 9 // v=4 | |
1562 | 23 |
13122 | 24 #define MSGL_FIXME 1 // for conversions from printf where the appropriate MSGL is not known; set equal to ERR for obtrusiveness |
25 #define MSGT_FIXME 0 // for conversions from printf where the appropriate MSGT is not known; set equal to GLOBAL for obtrusiveness | |
26 | |
1562 | 27 // code/module: |
28 | |
1566 | 29 #define MSGT_GLOBAL 0 // common player stuff errors |
30 #define MSGT_CPLAYER 1 // console player (mplayer.c) | |
1562 | 31 #define MSGT_GPLAYER 2 // gui player |
32 | |
33 #define MSGT_VO 3 // libvo | |
34 #define MSGT_AO 4 // libao | |
35 | |
36 #define MSGT_DEMUXER 5 // demuxer.c (general stuff) | |
37 #define MSGT_DS 6 // demux stream (add/read packet etc) | |
38 #define MSGT_DEMUX 7 // fileformat-specific stuff (demux_*.c) | |
1563 | 39 #define MSGT_HEADER 8 // fileformat-specific header (*header.c) |
1562 | 40 |
1566 | 41 #define MSGT_AVSYNC 9 // mplayer.c timer stuff |
42 #define MSGT_AUTOQ 10 // mplayer.c auto-quality stuff | |
43 | |
44 #define MSGT_CFGPARSER 11 // cfgparser.c | |
45 | |
46 #define MSGT_DECAUDIO 12 // av decoder | |
47 #define MSGT_DECVIDEO 13 | |
48 | |
49 #define MSGT_SEEK 14 // seeking code | |
50 #define MSGT_WIN32 15 // win32 dll stuff | |
51 #define MSGT_OPEN 16 // open.c (stream opening) | |
1593 | 52 #define MSGT_DVD 17 // open.c (DVD init/read/seek) |
1566 | 53 |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1593
diff
changeset
|
54 #define MSGT_PARSEES 18 // parse_es.c (mpeg stream parser) |
5198
a528f6c891b5
A bug fix in the auto-repeat stuff + moved all printf to mp_msg
albeu
parents:
5101
diff
changeset
|
55 #define MSGT_LIRC 19 // lirc_mp.c and input lirc driver |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1593
diff
changeset
|
56 |
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1593
diff
changeset
|
57 #define MSGT_STREAM 20 // stream.c |
2787 | 58 #define MSGT_CACHE 21 // cache2.c |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1593
diff
changeset
|
59 |
2620 | 60 #define MSGT_MENCODER 22 |
61 | |
2787 | 62 #define MSGT_XACODEC 23 // XAnim codecs |
63 | |
64 #define MSGT_TV 24 // TV input subsystem | |
65 | |
3085 | 66 #define MSGT_OSDEP 25 // OS Dependant parts (linux/ for now) |
67 | |
3821 | 68 #define MSGT_SPUDEC 26 // spudec.c |
69 | |
4044 | 70 #define MSGT_PLAYTREE 27 // Playtree handeling (playtree.c, playtreeparser.c) |
71 | |
5198
a528f6c891b5
A bug fix in the auto-repeat stuff + moved all printf to mp_msg
albeu
parents:
5101
diff
changeset
|
72 #define MSGT_INPUT 28 |
a528f6c891b5
A bug fix in the auto-repeat stuff + moved all printf to mp_msg
albeu
parents:
5101
diff
changeset
|
73 |
5505 | 74 #define MSGT_VFILTER 29 |
75 | |
5638
86663f1b9b00
new osd code, use osd objs to follow changes and do minimal updates
arpi
parents:
5505
diff
changeset
|
76 #define MSGT_OSD 30 |
86663f1b9b00
new osd code, use osd objs to follow changes and do minimal updates
arpi
parents:
5505
diff
changeset
|
77 |
5915 | 78 #define MSGT_NETWORK 31 |
79 | |
5936 | 80 #define MSGT_CPUDETECT 32 |
81 | |
82 #define MSGT_CODECCFG 33 | |
83 | |
84 #define MSGT_SWS 34 | |
85 | |
6110 | 86 #define MSGT_VOBSUB 35 |
6296 | 87 #define MSGT_SUBREADER 36 |
6110 | 88 |
7568 | 89 #define MSGT_AFILTER 37 // Audio filter messages |
90 | |
9862 | 91 #define MSGT_NETST 38 // Netstream |
92 | |
11222 | 93 #define MSGT_MUXER 39 // muxer layer |
94 | |
1562 | 95 #define MSGT_MAX 64 |
96 | |
5220
4afbe13150e6
splitted mp_msg_init and mp_msg_set_level and added i18n support to init
alex
parents:
5198
diff
changeset
|
97 void mp_msg_init(); |
4afbe13150e6
splitted mp_msg_init and mp_msg_set_level and added i18n support to init
alex
parents:
5198
diff
changeset
|
98 void mp_msg_set_level(int verbose); |
7058
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
6296
diff
changeset
|
99 int mp_msg_test(int mod, int lev); |
1562 | 100 |
5101 | 101 #include "config.h" |
102 | |
5287 | 103 #ifdef TARGET_OS2 |
104 // va_start/vsnprintf seems to be broken under OS2 :( | |
8957
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
7568
diff
changeset
|
105 #define mp_msg(mod,lev, fmt, args... ) do{if((lev)<=mp_msg_levels[mod]) printf( fmt, ## args );}while(0) |
5287 | 106 #define mp_dbg(mod,lev, args... ) |
107 #else | |
108 | |
5101 | 109 #ifdef USE_I18N |
110 #include <libintl.h> | |
5220
4afbe13150e6
splitted mp_msg_init and mp_msg_set_level and added i18n support to init
alex
parents:
5198
diff
changeset
|
111 #include <locale.h> |
5101 | 112 #define mp_gettext(String) gettext(String) |
113 #else | |
114 #define mp_gettext(String) String | |
115 #endif | |
1568
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
116 |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
117 #ifdef __GNUC__ |
10736
3e57b9c079b6
Handle mp_msg like printf so compiler can report if missing/too much arguments or other errors happen. GCC only
alex
parents:
9862
diff
changeset
|
118 void mp_msg_c( int x, const char *format, ... ) __attribute__ ((format (printf, 2, 3))); |
8957
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
7568
diff
changeset
|
119 #define mp_msg(mod,lev, args... ) mp_msg_c(((mod)<<8)|(lev), ## args ) |
1566 | 120 |
121 #ifdef MP_DEBUG | |
8957
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
7568
diff
changeset
|
122 #define mp_dbg(mod,lev, args... ) mp_msg_c(((mod)<<8)|(lev), ## args ) |
1566 | 123 #else |
124 // these messages are only usefull for developers, disable them | |
1568
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
125 #define mp_dbg(mod,lev, args... ) |
1566 | 126 #endif |
1568
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
127 #else // not GNU C |
10736
3e57b9c079b6
Handle mp_msg like printf so compiler can report if missing/too much arguments or other errors happen. GCC only
alex
parents:
9862
diff
changeset
|
128 void mp_msg_c( int x, const char *format, ... ); |
8957
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
7568
diff
changeset
|
129 #define mp_msg(mod,lev, ... ) mp_msg_c(((mod)<<8)|(lev), __VA_ARGS__) |
1568
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
130 |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
131 #ifdef MP_DEBUG |
8957
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
7568
diff
changeset
|
132 #define mp_dbg(mod,lev, ... ) mp_msg_c(((mod)<<8)|(lev), __VA_ARGS__) |
1568
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
133 #else |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
134 // these messages are only usefull for developers, disable them |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
135 #define mp_dbg(mod,lev, ... ) |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
136 #endif |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
137 #endif |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4044
diff
changeset
|
138 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4044
diff
changeset
|
139 #endif |
5287 | 140 #endif |