Mercurial > mplayer.hg
changeset 1583:ca7bf882d2f8
ehh. mp_msgt->mp_msg
author | arpi |
---|---|
date | Sat, 18 Aug 2001 19:52:14 +0000 |
parents | 12aa68bf2ff5 |
children | e49b3927c793 |
files | mplayer.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mplayer.c Sat Aug 18 19:51:21 2001 +0000 +++ b/mplayer.c Sat Aug 18 19:52:14 2001 +0000 @@ -290,7 +290,7 @@ } #endif - if(how) mp_msgt(MSGT_CPLAYER,MSGL_INFO,MSGTR_Exiting,how); + if(how) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Exiting,how); mp_msg(MSGT_CPLAYER,MSGL_V,"max framesize was %d bytes\n",max_framesize); if(benchmark){ double tot=video_time_usage+vout_time_usage+audio_time_usage; @@ -337,7 +337,7 @@ // can't stop :( kill(getpid(),SIGKILL); } - mp_msgt(MSGT_CPLAYER,MSGL_FATAL,MSGTR_IntBySignal,x, + mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_IntBySignal,x, current_module?current_module:"unknown" ); #ifdef HAVE_GUI @@ -382,12 +382,12 @@ if (parse_config_file(conf, "/etc/mplayer.conf") < 0) exit(1); if ((conffile = get_path("")) == NULL) { - mp_msgt(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir); + mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir); } else { mkdir(conffile, 0777); free(conffile); if ((conffile = get_path("config")) == NULL) { - mp_msgt(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem); + mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem); } else { if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) { mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile);