summaryrefslogtreecommitdiffstats
path: root/player/main.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-19 21:28:55 +0100
committerwm4 <wm4@nowhere>2013-12-19 21:31:18 +0100
commit5e0c4ec3e8f17064bf6837d33e3583afbd9214e2 (patch)
treef4b4a987c0c1464255d8d9a55c69eac9965f19d9 /player/main.c
parent7a8207a3fbb93ddd2f9954f6ff1aedad043c47f1 (diff)
downloadmpv-5e0c4ec3e8f17064bf6837d33e3583afbd9214e2.tar.bz2
mpv-5e0c4ec3e8f17064bf6837d33e3583afbd9214e2.tar.xz
player: replace some overlooked mp_msgs
There are still some using IDENTIFY, and some without context in configfiles.c.
Diffstat (limited to 'player/main.c')
-rw-r--r--player/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/main.c b/player/main.c
index 037ea12d4d..217d01c00f 100644
--- a/player/main.c
+++ b/player/main.c
@@ -210,7 +210,7 @@ static bool handle_help_options(struct MPContext *mpctx)
#if HAVE_X11
if (opts->vo.fstype_list && strcmp(opts->vo.fstype_list[0], "help") == 0) {
fstype_help();
- mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
+ MP_INFO(mpctx, "\n");
opt_exit = 1;
}
#endif
@@ -379,7 +379,7 @@ static int mpv_main(int argc, char *argv[])
if (opts->encode_output.file && *opts->encode_output.file) {
mpctx->encode_lavc_ctx = encode_lavc_init(&opts->encode_output);
if(!mpctx->encode_lavc_ctx) {
- mp_msg(MSGT_VO, MSGL_INFO, "Encoding initialization failed.");
+ MP_INFO(mpctx, "Encoding initialization failed.");
exit_player(mpctx, EXIT_ERROR);
}
m_config_set_option0(mpctx->mconfig, "vo", "lavc");