sub: #include required ctype.h directly
[mplayer.git] / mp_msg.h
blob300ee3cb3bce18b542b7000b9e84090933689294
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef MPLAYER_MP_MSG_H
20 #define MPLAYER_MP_MSG_H
22 #include <stdarg.h>
24 // defined in mplayer.c
25 extern int verbose;
27 /* No-op macro to mark translated strings in the sources */
28 #define _(x) x
30 // verbosity elevel:
32 /* Only messages level MSGL_FATAL-MSGL_STATUS should be translated,
33 * messages level MSGL_V and above should not be translated. */
35 #define MSGL_FATAL 0 // will exit/abort
36 #define MSGL_ERR 1 // continues
37 #define MSGL_WARN 2 // only warning
38 #define MSGL_HINT 3 // short help message
39 #define MSGL_INFO 4 // -quiet
40 #define MSGL_STATUS 5 // v=0
41 #define MSGL_V 6 // v=1
42 #define MSGL_DBG2 7 // v=2
43 #define MSGL_DBG3 8 // v=3
44 #define MSGL_DBG4 9 // v=4
45 #define MSGL_DBG5 10 // v=5
47 #define MSGL_FIXME 1 // for conversions from printf where the appropriate MSGL is not known; set equal to ERR for obtrusiveness
48 #define MSGT_FIXME 0 // for conversions from printf where the appropriate MSGT is not known; set equal to GLOBAL for obtrusiveness
50 // code/module:
52 #define MSGT_GLOBAL 0 // common player stuff errors
53 #define MSGT_CPLAYER 1 // console player (mplayer.c)
55 #define MSGT_VO 3 // libvo
56 #define MSGT_AO 4 // libao
58 #define MSGT_DEMUXER 5 // demuxer.c (general stuff)
59 #define MSGT_DS 6 // demux stream (add/read packet etc)
60 #define MSGT_DEMUX 7 // fileformat-specific stuff (demux_*.c)
61 #define MSGT_HEADER 8 // fileformat-specific header (*header.c)
63 #define MSGT_AVSYNC 9 // mplayer.c timer stuff
64 #define MSGT_AUTOQ 10 // mplayer.c auto-quality stuff
66 #define MSGT_CFGPARSER 11 // cfgparser.c
68 #define MSGT_DECAUDIO 12 // av decoder
69 #define MSGT_DECVIDEO 13
71 #define MSGT_SEEK 14 // seeking code
72 #define MSGT_WIN32 15 // win32 dll stuff
73 #define MSGT_OPEN 16 // open.c (stream opening)
74 #define MSGT_DVD 17 // open.c (DVD init/read/seek)
76 #define MSGT_PARSEES 18 // parse_es.c (mpeg stream parser)
77 #define MSGT_LIRC 19 // lirc_mp.c and input lirc driver
79 #define MSGT_STREAM 20 // stream.c
80 #define MSGT_CACHE 21 // cache2.c
82 #define MSGT_XACODEC 23 // XAnim codecs
84 #define MSGT_TV 24 // TV input subsystem
86 #define MSGT_OSDEP 25 // OS-dependent parts
88 #define MSGT_SPUDEC 26 // spudec.c
90 #define MSGT_PLAYTREE 27 // Playtree handeling (playtree.c, playtreeparser.c)
92 #define MSGT_INPUT 28
94 #define MSGT_VFILTER 29
96 #define MSGT_OSD 30
98 #define MSGT_NETWORK 31
100 #define MSGT_CPUDETECT 32
102 #define MSGT_CODECCFG 33
104 #define MSGT_VOBSUB 35
105 #define MSGT_SUBREADER 36
107 #define MSGT_AFILTER 37 // Audio filter messages
109 #define MSGT_MUXER 39 // muxer layer
111 #define MSGT_IDENTIFY 41 // -identify output
113 #define MSGT_RADIO 42
115 #define MSGT_ASS 43 // libass messages
117 #define MSGT_LOADER 44 // dll loader messages
119 #define MSGT_STATUSLINE 45 // playback/encoding status line
121 #define MSGT_TELETEXT 46 // Teletext decoder
123 #define MSGT_MAX 64
125 void mp_msg_init(void);
126 int mp_msg_test(int mod, int lev);
128 #include "config.h"
129 #include "mpcommon.h"
131 char *mp_gtext(const char *string);
133 void mp_msg_va(int mod, int lev, const char *format, va_list va);
135 void mp_msg(int mod, int lev, const char *format, ... ) PRINTF_ATTRIBUTE(3, 4);
136 void mp_tmsg(int mod, int lev, const char *format, ... ) PRINTF_ATTRIBUTE(3, 4);
137 static inline void mp_dbg(int mod, int lev, const char *format, ...) PRINTF_ATTRIBUTE(3, 4);
139 static inline void mp_dbg(int mod, int lev, const char *format, ...)
141 #ifdef MP_DEBUG
142 va_list va;
143 va_start(va, format);
144 mp_msg_va(mod, lev, format, va);
145 va_end(va);
146 #endif
149 const char* filename_recode(const char* filename);
151 #endif /* MPLAYER_MP_MSG_H */