mp_msg: Remove uses of MSGT_MENCODER
[mplayer/glamo.git] / mp_msg.h
blob7273b2a82d4382f8ae753d02013425515cd5e885
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_SWS 34
106 #define MSGT_VOBSUB 35
107 #define MSGT_SUBREADER 36
109 #define MSGT_AFILTER 37 // Audio filter messages
111 #define MSGT_NETST 38 // Netstream
113 #define MSGT_MUXER 39 // muxer layer
115 #define MSGT_OSD_MENU 40
117 #define MSGT_IDENTIFY 41 // -identify output
119 #define MSGT_RADIO 42
121 #define MSGT_ASS 43 // libass messages
123 #define MSGT_LOADER 44 // dll loader messages
125 #define MSGT_STATUSLINE 45 // playback/encoding status line
127 #define MSGT_TELETEXT 46 // Teletext decoder
129 #define MSGT_MAX 64
131 void mp_msg_init(void);
132 int mp_msg_test(int mod, int lev);
134 #include "config.h"
136 char *mp_gtext(const char *string);
138 void mp_msg_va(int mod, int lev, const char *format, va_list va);
140 #ifdef __GNUC__
141 void mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4)));
142 void mp_tmsg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4)));
143 #else // not GNU C
144 void mp_msg(int mod, int lev, const char *format, ... );
145 void mp_tmsg(int mod, int lev, const char *format, ...)
146 #endif /* __GNUC__ */
148 #ifdef MP_DEBUG
149 #define mp_dbg(mod,lev, ... ) mp_msg(mod, lev, __VA_ARGS__)
150 #else
151 #define mp_dbg(mod,lev, ... ) /* only useful for developers */
152 #endif
154 const char* filename_recode(const char* filename);
156 #endif /* MPLAYER_MP_MSG_H */