diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-08-01 13:58:35 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-02 04:14:48 +0200 |
commit | 431183c03f3020bf9e4c5317555c94b7f32cf0c5 (patch) | |
tree | edf16b8af12d8fa53e53d4054a523090ad212383 | |
parent | 3f4dd2f8333c12c87901c070a4659ea59e102e23 (diff) |
options: Also allow setting msglevel for MSGT_FIXME
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31885 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | cfg-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cfg-common.h b/cfg-common.h index 38bb3e1724..eb0b73ed62 100644 --- a/cfg-common.h +++ b/cfg-common.h @@ -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} |