annotate mp_msg.h @ 29998:0dacb57a3d3e

Filter list of missing source files so that it only contains nonexisting files. Thus those files can be symlinked directly without testing if they exist.
author diego
date Mon, 14 Dec 2009 12:03:02 +0000
parents 1cc8a20520e8
children c1a3f1bbba26
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25534
diff changeset
1 #ifndef MPLAYER_MP_MSG_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25534
diff changeset
2 #define MPLAYER_MP_MSG_H
1566
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
3
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
4 // 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
5 extern int verbose;
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
6
2caba2f48026 new message printing system
arpi
parents:
diff changeset
7 // verbosity elevel:
2caba2f48026 new message printing system
arpi
parents:
diff changeset
8
17968
963062e18809 Clarify which message levels should be translated.
diego
parents: 17947
diff changeset
9 /* Only messages level MSGL_FATAL-MSGL_STATUS should be translated,
963062e18809 Clarify which message levels should be translated.
diego
parents: 17947
diff changeset
10 * messages level MSGL_V and above should not be translated. */
1566
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
11
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
12 #define MSGL_FATAL 0 // will exit/abort
1563
0199567db534 constans shortend
arpi
parents: 1562
diff changeset
13 #define MSGL_ERR 1 // continues
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
14 #define MSGL_WARN 2 // only warning
1566
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
15 #define MSGL_HINT 3 // short help message
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
16 #define MSGL_INFO 4 // -quiet
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
17 #define MSGL_STATUS 5 // v=0
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
18 #define MSGL_V 6 // v=1
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
19 #define MSGL_DBG2 7 // v=2
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
20 #define MSGL_DBG3 8 // v=3
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
21 #define MSGL_DBG4 9 // v=4
17930
81cbc8debd3c Add DBG5 verbosity level to prepare for upcoming mp_msg_test changes.
diego
parents: 17566
diff changeset
22 #define MSGL_DBG5 10 // v=5
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
23
13122
fcce0023bf55 printf -> mp_msg conversion, first steps
diego
parents: 11222
diff changeset
24 #define MSGL_FIXME 1 // for conversions from printf where the appropriate MSGL is not known; set equal to ERR for obtrusiveness
fcce0023bf55 printf -> mp_msg conversion, first steps
diego
parents: 11222
diff changeset
25 #define MSGT_FIXME 0 // for conversions from printf where the appropriate MSGT is not known; set equal to GLOBAL for obtrusiveness
fcce0023bf55 printf -> mp_msg conversion, first steps
diego
parents: 11222
diff changeset
26
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
27 // code/module:
2caba2f48026 new message printing system
arpi
parents:
diff changeset
28
1566
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
29 #define MSGT_GLOBAL 0 // common player stuff errors
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
30 #define MSGT_CPLAYER 1 // console player (mplayer.c)
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
31 #define MSGT_GPLAYER 2 // gui player
2caba2f48026 new message printing system
arpi
parents:
diff changeset
32
2caba2f48026 new message printing system
arpi
parents:
diff changeset
33 #define MSGT_VO 3 // libvo
2caba2f48026 new message printing system
arpi
parents:
diff changeset
34 #define MSGT_AO 4 // libao
2caba2f48026 new message printing system
arpi
parents:
diff changeset
35
2caba2f48026 new message printing system
arpi
parents:
diff changeset
36 #define MSGT_DEMUXER 5 // demuxer.c (general stuff)
2caba2f48026 new message printing system
arpi
parents:
diff changeset
37 #define MSGT_DS 6 // demux stream (add/read packet etc)
2caba2f48026 new message printing system
arpi
parents:
diff changeset
38 #define MSGT_DEMUX 7 // fileformat-specific stuff (demux_*.c)
1563
0199567db534 constans shortend
arpi
parents: 1562
diff changeset
39 #define MSGT_HEADER 8 // fileformat-specific header (*header.c)
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
40
1566
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
41 #define MSGT_AVSYNC 9 // mplayer.c timer stuff
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
42 #define MSGT_AUTOQ 10 // mplayer.c auto-quality stuff
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
43
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
44 #define MSGT_CFGPARSER 11 // cfgparser.c
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
45
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
46 #define MSGT_DECAUDIO 12 // av decoder
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
47 #define MSGT_DECVIDEO 13
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
48
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
49 #define MSGT_SEEK 14 // seeking code
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
50 #define MSGT_WIN32 15 // win32 dll stuff
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
51 #define MSGT_OPEN 16 // open.c (stream opening)
1593
9d405908f878 DVD added
arpi
parents: 1568
diff changeset
52 #define MSGT_DVD 17 // open.c (DVD init/read/seek)
1566
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
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
8dfe10c9f15d fixes for vivo
alex
parents: 2620
diff changeset
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
e2f600293621 MSGT_MENCODER added
arpi
parents: 2370
diff changeset
60 #define MSGT_MENCODER 22
e2f600293621 MSGT_MENCODER added
arpi
parents: 2370
diff changeset
61
2787
8dfe10c9f15d fixes for vivo
alex
parents: 2620
diff changeset
62 #define MSGT_XACODEC 23 // XAnim codecs
8dfe10c9f15d fixes for vivo
alex
parents: 2620
diff changeset
63
8dfe10c9f15d fixes for vivo
alex
parents: 2620
diff changeset
64 #define MSGT_TV 24 // TV input subsystem
8dfe10c9f15d fixes for vivo
alex
parents: 2620
diff changeset
65
22316
f3d7a1b58a82 cosmetics: Fix some common typos, appropiate --> appropRiate,
diego
parents: 22289
diff changeset
66 #define MSGT_OSDEP 25 // OS-dependent parts
3085
f6247be96224 added MSGT_OSDEP
alex
parents: 2787
diff changeset
67
3821
a75add28f16c spudec added
arpi
parents: 3085
diff changeset
68 #define MSGT_SPUDEC 26 // spudec.c
a75add28f16c spudec added
arpi
parents: 3085
diff changeset
69
4044
5db51705d5c7 MSGT_PLAYTREE added
arpi
parents: 3821
diff changeset
70 #define MSGT_PLAYTREE 27 // Playtree handeling (playtree.c, playtreeparser.c)
5db51705d5c7 MSGT_PLAYTREE added
arpi
parents: 3821
diff changeset
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
72f080de9ce5 MSGT_VFILTER added
arpi
parents: 5287
diff changeset
74 #define MSGT_VFILTER 29
72f080de9ce5 MSGT_VFILTER added
arpi
parents: 5287
diff changeset
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
f716aa9e2df2 Convert printf to mp_msg in the network layer
albeu
parents: 5638
diff changeset
78 #define MSGT_NETWORK 31
f716aa9e2df2 Convert printf to mp_msg in the network layer
albeu
parents: 5638
diff changeset
79
5936
d0f040d8f53c New MSGT for more printf to mp_msg
albeu
parents: 5915
diff changeset
80 #define MSGT_CPUDETECT 32
d0f040d8f53c New MSGT for more printf to mp_msg
albeu
parents: 5915
diff changeset
81
d0f040d8f53c New MSGT for more printf to mp_msg
albeu
parents: 5915
diff changeset
82 #define MSGT_CODECCFG 33
d0f040d8f53c New MSGT for more printf to mp_msg
albeu
parents: 5915
diff changeset
83
d0f040d8f53c New MSGT for more printf to mp_msg
albeu
parents: 5915
diff changeset
84 #define MSGT_SWS 34
d0f040d8f53c New MSGT for more printf to mp_msg
albeu
parents: 5915
diff changeset
85
6110
7bea806b9c5f Improvment for spu subtitles.
albeu
parents: 5936
diff changeset
86 #define MSGT_VOBSUB 35
6296
74115095d9fe msg/i18n fixes and some printf->mp_msg
arpi
parents: 6110
diff changeset
87 #define MSGT_SUBREADER 36
6110
7bea806b9c5f Improvment for spu subtitles.
albeu
parents: 5936
diff changeset
88
7568
d08513b9fed6 Adding new audio output filter layer libaf
anders
parents: 7058
diff changeset
89 #define MSGT_AFILTER 37 // Audio filter messages
d08513b9fed6 Adding new audio output filter layer libaf
anders
parents: 7058
diff changeset
90
9862
d172681d07eb 100L forgot this commit for netstream.
albeu
parents: 8957
diff changeset
91 #define MSGT_NETST 38 // Netstream
d172681d07eb 100L forgot this commit for netstream.
albeu
parents: 8957
diff changeset
92
11222
b82e3ecb11e0 some updates in muxer api
alex
parents: 10736
diff changeset
93 #define MSGT_MUXER 39 // muxer layer
b82e3ecb11e0 some updates in muxer api
alex
parents: 10736
diff changeset
94
17947
c33dc00f0946 Add a msg type for the osd menu.
albeu
parents: 17930
diff changeset
95 #define MSGT_OSD_MENU 40
c33dc00f0946 Add a msg type for the osd menu.
albeu
parents: 17930
diff changeset
96
18237
4231482179b6 Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents: 18000
diff changeset
97 #define MSGT_IDENTIFY 41 // -identify output
4231482179b6 Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents: 18000
diff changeset
98
19568
bd821fd3e244 Radio support, patch by Vladimir Voroshilov (voroshil gmail com)
reimar
parents: 18237
diff changeset
99 #define MSGT_RADIO 42
bd821fd3e244 Radio support, patch by Vladimir Voroshilov (voroshil gmail com)
reimar
parents: 18237
diff changeset
100
20629
e8885ec63928 Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents: 19568
diff changeset
101 #define MSGT_ASS 43 // libass messages
e8885ec63928 Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents: 19568
diff changeset
102
21290
efc774a1e5a4 fix compilation for win32 dll codec support for intel osx
nplourde
parents: 20629
diff changeset
103 #define MSGT_LOADER 44 // dll loader messages
efc774a1e5a4 fix compilation for win32 dll codec support for intel osx
nplourde
parents: 20629
diff changeset
104
23460
44746cbd4e5b Create a new MSGT for just the status line.
diego
parents: 22316
diff changeset
105 #define MSGT_STATUSLINE 45 // playback/encoding status line
44746cbd4e5b Create a new MSGT for just the status line.
diego
parents: 22316
diff changeset
106
29760
1cc8a20520e8 Add MSGT_TELETEXT, rename TVI_CONTROL as VBI_CONTROL and fix some paths
cehoyos
parents: 26103
diff changeset
107 #define MSGT_TELETEXT 46 // Teletext decoder
1cc8a20520e8 Add MSGT_TELETEXT, rename TVI_CONTROL as VBI_CONTROL and fix some paths
cehoyos
parents: 26103
diff changeset
108
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
109 #define MSGT_MAX 64
2caba2f48026 new message printing system
arpi
parents:
diff changeset
110
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 17106
diff changeset
111 void mp_msg_init(void);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6296
diff changeset
112 int mp_msg_test(int mod, int lev);
1562
2caba2f48026 new message printing system
arpi
parents:
diff changeset
113
5101
870ba1ffdbf9 added mp_gettext macro for i18n
alex
parents: 4818
diff changeset
114 #include "config.h"
870ba1ffdbf9 added mp_gettext macro for i18n
alex
parents: 4818
diff changeset
115
1568
2d4904c16667 modifications to use variable number of arguments in #define with GCC
atlka
parents: 1566
diff changeset
116 #ifdef __GNUC__
16618
bad73cd81b23 mp_msg cleanup.
ods15
parents: 14542
diff changeset
117 void mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4)));
16621
ods15
parents: 16618
diff changeset
118 # ifdef MP_DEBUG
ods15
parents: 16618
diff changeset
119 # define mp_dbg(mod,lev, args... ) mp_msg(mod, lev, ## args )
ods15
parents: 16618
diff changeset
120 # else
22289
780caed72ac7 cosmetics: typo fixes, usefuLL --> useful and aswell --> as well
diego
parents: 22002
diff changeset
121 # define mp_dbg(mod,lev, args... ) /* only useful for developers */
16621
ods15
parents: 16618
diff changeset
122 # endif
16618
bad73cd81b23 mp_msg cleanup.
ods15
parents: 14542
diff changeset
123 #else // not GNU C
bad73cd81b23 mp_msg cleanup.
ods15
parents: 14542
diff changeset
124 void mp_msg(int mod, int lev, const char *format, ... );
16621
ods15
parents: 16618
diff changeset
125 # ifdef MP_DEBUG
ods15
parents: 16618
diff changeset
126 # define mp_dbg(mod,lev, ... ) mp_msg(mod, lev, __VA_ARGS__)
ods15
parents: 16618
diff changeset
127 # else
22289
780caed72ac7 cosmetics: typo fixes, usefuLL --> useful and aswell --> as well
diego
parents: 22002
diff changeset
128 # define mp_dbg(mod,lev, ... ) /* only useful for developers */
16621
ods15
parents: 16618
diff changeset
129 # endif
25534
ed0cfc9e60cb Add comments to some #endif directives.
diego
parents: 23689
diff changeset
130 #endif /* __GNUC__ */
1566
913c1ee56b4f updated
arpi
parents: 1563
diff changeset
131
22002
ebd2d5efb11b filename double-conversion, especially usefull for CJK users :-)
gpoirier
parents: 21290
diff changeset
132 const char* filename_recode(const char* filename);
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4044
diff changeset
133
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25534
diff changeset
134 #endif /* MPLAYER_MP_MSG_H */