Mercurial > mplayer.hg
annotate mp_msg.h @ 5038:09f8dcbfa731
ijpg handles AVID and Photo JPEG too
author | arpi |
---|---|
date | Mon, 11 Mar 2002 00:49:52 +0000 |
parents | 3473ca9ef158 |
children | 870ba1ffdbf9 |
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 |
5 extern int verbose; // defined in mplayer.c | |
1562 | 6 |
7 // verbosity elevel: | |
8 | |
1566 | 9 // stuff from level MSGL_FATAL-MSGL_HINT should be translated. |
10 | |
1562 | 11 #define MSGL_FATAL 0 // will exit/abort |
1563 | 12 #define MSGL_ERR 1 // continues |
1562 | 13 #define MSGL_WARN 2 // only warning |
1566 | 14 #define MSGL_HINT 3 // short help message |
15 #define MSGL_INFO 4 // -quiet | |
16 #define MSGL_STATUS 5 // v=0 | |
17 #define MSGL_V 6 // v=1 | |
18 #define MSGL_DBG2 7 // v=2 | |
19 #define MSGL_DBG3 8 // v=3 | |
20 #define MSGL_DBG4 9 // v=4 | |
1562 | 21 |
22 // code/module: | |
23 | |
1566 | 24 #define MSGT_GLOBAL 0 // common player stuff errors |
25 #define MSGT_CPLAYER 1 // console player (mplayer.c) | |
1562 | 26 #define MSGT_GPLAYER 2 // gui player |
27 | |
28 #define MSGT_VO 3 // libvo | |
29 #define MSGT_AO 4 // libao | |
30 | |
31 #define MSGT_DEMUXER 5 // demuxer.c (general stuff) | |
32 #define MSGT_DS 6 // demux stream (add/read packet etc) | |
33 #define MSGT_DEMUX 7 // fileformat-specific stuff (demux_*.c) | |
1563 | 34 #define MSGT_HEADER 8 // fileformat-specific header (*header.c) |
1562 | 35 |
1566 | 36 #define MSGT_AVSYNC 9 // mplayer.c timer stuff |
37 #define MSGT_AUTOQ 10 // mplayer.c auto-quality stuff | |
38 | |
39 #define MSGT_CFGPARSER 11 // cfgparser.c | |
40 | |
41 #define MSGT_DECAUDIO 12 // av decoder | |
42 #define MSGT_DECVIDEO 13 | |
43 | |
44 #define MSGT_SEEK 14 // seeking code | |
45 #define MSGT_WIN32 15 // win32 dll stuff | |
46 #define MSGT_OPEN 16 // open.c (stream opening) | |
1593 | 47 #define MSGT_DVD 17 // open.c (DVD init/read/seek) |
1566 | 48 |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1593
diff
changeset
|
49 #define MSGT_PARSEES 18 // parse_es.c (mpeg stream parser) |
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1593
diff
changeset
|
50 #define MSGT_LIRC 19 // lirc_mp.c |
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1593
diff
changeset
|
51 |
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1593
diff
changeset
|
52 #define MSGT_STREAM 20 // stream.c |
2787 | 53 #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
|
54 |
2620 | 55 #define MSGT_MENCODER 22 |
56 | |
2787 | 57 #define MSGT_XACODEC 23 // XAnim codecs |
58 | |
59 #define MSGT_TV 24 // TV input subsystem | |
60 | |
3085 | 61 #define MSGT_OSDEP 25 // OS Dependant parts (linux/ for now) |
62 | |
3821 | 63 #define MSGT_SPUDEC 26 // spudec.c |
64 | |
4044 | 65 #define MSGT_PLAYTREE 27 // Playtree handeling (playtree.c, playtreeparser.c) |
66 | |
1562 | 67 #define MSGT_MAX 64 |
68 | |
69 void mp_msg_init(int verbose); | |
70 void mp_msg_c( int x, const char *format, ... ); | |
71 | |
1568
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
72 |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
73 #ifdef __GNUC__ |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
74 #define mp_msg(mod,lev, args... ) mp_msg_c((mod<<8)|lev, ## args ) |
1566 | 75 |
76 #ifdef MP_DEBUG | |
1568
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
77 #define mp_dbg(mod,lev, args... ) mp_msg_c((mod<<8)|lev, ## args ) |
1566 | 78 #else |
79 // 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
|
80 #define mp_dbg(mod,lev, args... ) |
1566 | 81 #endif |
1568
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
82 #else // not GNU C |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
83 #define mp_msg(mod,lev, ... ) mp_msg_c((mod<<8)|lev, __VA_ARGS__) |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
84 |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
85 #ifdef MP_DEBUG |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
86 #define mp_dbg(mod,lev, ... ) mp_msg_c((mod<<8)|lev, __VA_ARGS__) |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
87 #else |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
88 // 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
|
89 #define mp_dbg(mod,lev, ... ) |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
90 #endif |
2d4904c16667
modifications to use variable number of arguments in #define with GCC
atlka
parents:
1566
diff
changeset
|
91 #endif |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4044
diff
changeset
|
92 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4044
diff
changeset
|
93 #endif |