mirror of https://github.com/mpv-player/mpv
options: Also allow setting msglevel for MSGT_FIXME
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31885 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
3f4dd2f833
commit
431183c03f
|
@ -313,6 +313,7 @@ const m_option_t msgl_config[]={
|
|||
{ "identify", &mp_msg_levels[MSGT_IDENTIFY], CONF_TYPE_INT, CONF_RANGE, -1, 9, NULL },
|
||||
{ "ass", &mp_msg_levels[MSGT_ASS], CONF_TYPE_INT, CONF_RANGE, -1, 9, NULL },
|
||||
{ "statusline", &mp_msg_levels[MSGT_STATUSLINE], CONF_TYPE_INT, CONF_RANGE, -1, 9, NULL },
|
||||
{ "fixme", &mp_msg_levels[MSGT_FIXME], CONF_TYPE_INT, CONF_RANGE, -1, 9, NULL },
|
||||
{"help", "Available msg modules:\n"
|
||||
" global - common player errors/information\n"
|
||||
" cplayer - console player (mplayer.c)\n"
|
||||
|
@ -357,6 +358,7 @@ const m_option_t msgl_config[]={
|
|||
" identify - identify output\n"
|
||||
" ass - libass messages\n"
|
||||
" statusline - playback/encoding status line\n"
|
||||
" fixme - messages not yet fixed to map to module\n"
|
||||
"\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
|
||||
{NULL, NULL, 0, 0, 0, 0, NULL}
|
||||
|
||||
|
|
Loading…
Reference in New Issue