# HG changeset patch # User diego # Date 1160691859 0 # Node ID b6eed21e05357210ee4142fd00f4fd7b849d0de6 # Parent 8515422fd00dfa55b12e3d997821d9ce13bba439 slight overall verbosity reduction diff -r 8515422fd00d -r b6eed21e0535 help/help_mp-en.h --- a/help/help_mp-en.h Thu Oct 12 18:29:26 2006 +0000 +++ b/help/help_mp-en.h Thu Oct 12 22:24:19 2006 +0000 @@ -650,8 +650,7 @@ // LIRC: #define MSGTR_SettingUpLIRC "Setting up LIRC support...\n" -#define MSGTR_LIRCdisabled "You will not be able to use your remote control.\n" -#define MSGTR_LIRCopenfailed "Failed to open LIRC support.\n" +#define MSGTR_LIRCopenfailed "Failed to open LIRC support. You will not be able to use your remote control.\n" #define MSGTR_LIRCcfgerr "Failed to read LIRC config file %s.\n" // vf.c diff -r 8515422fd00d -r b6eed21e0535 input/joystick.c --- a/input/joystick.c Thu Oct 12 18:29:26 2006 +0000 +++ b/input/joystick.c Thu Oct 12 22:24:19 2006 +0000 @@ -36,7 +36,7 @@ int inited = 0; struct js_event ev; - mp_msg(MSGT_INPUT,MSGL_INFO,MSGTR_INPUT_JOYSTICK_Opening,dev ? dev : JS_DEV); + mp_msg(MSGT_INPUT,MSGL_V,MSGTR_INPUT_JOYSTICK_Opening,dev ? dev : JS_DEV); fd = open( dev ? dev : JS_DEV , O_RDONLY | O_NONBLOCK ); if(fd < 0) { diff -r 8515422fd00d -r b6eed21e0535 input/lirc.c --- a/input/lirc.c Thu Oct 12 18:29:26 2006 +0000 +++ b/input/lirc.c Thu Oct 12 22:24:19 2006 +0000 @@ -23,9 +23,9 @@ mp_input_lirc_init(void) { int lirc_sock; - mp_msg(MSGT_LIRC,MSGL_INFO,MSGTR_SettingUpLIRC); + mp_msg(MSGT_LIRC,MSGL_V,MSGTR_SettingUpLIRC); if((lirc_sock=lirc_init("mplayer",1))==-1){ - mp_msg(MSGT_LIRC,MSGL_ERR,MSGTR_LIRCopenfailed MSGTR_LIRCdisabled); + mp_msg(MSGT_LIRC,MSGL_ERR,MSGTR_LIRCopenfailed); return -1; } diff -r 8515422fd00d -r b6eed21e0535 libao2/ao_alsa.c --- a/libao2/ao_alsa.c Thu Oct 12 18:29:26 2006 +0000 +++ b/libao2/ao_alsa.c Thu Oct 12 22:24:19 2006 +0000 @@ -450,7 +450,7 @@ ao_noblock = !block; parse_device(alsa_device, device.str, device.len); - mp_msg(MSGT_AO,MSGL_INFO,"alsa-init: using device %s\n", alsa_device); + mp_msg(MSGT_AO,MSGL_V,"alsa-init: using device %s\n", alsa_device); //setting modes for block or nonblock-mode if (ao_noblock) { @@ -723,7 +723,7 @@ } /* end setting sw-params */ - mp_msg(MSGT_AO,MSGL_INFO,"alsa: %d Hz/%d channels/%d bpf/%d bytes buffer/%s\n", + mp_msg(MSGT_AO,MSGL_V,"alsa: %d Hz/%d channels/%d bpf/%d bytes buffer/%s\n", ao_data.samplerate, ao_data.channels, bytes_per_sample, ao_data.buffersize, snd_pcm_format_description(alsa_format)); @@ -750,7 +750,7 @@ } else { alsa_handler = NULL; - mp_msg(MSGT_AO,MSGL_INFO,"alsa-uninit: pcm closed\n"); + mp_msg(MSGT_AO,MSGL_V,"alsa-uninit: pcm closed\n"); } } else { diff -r 8515422fd00d -r b6eed21e0535 stream/http.c --- a/stream/http.c Thu Oct 12 18:29:26 2006 +0000 +++ b/stream/http.c Thu Oct 12 22:24:19 2006 +0000 @@ -891,7 +891,7 @@ stream->streaming_ctrl->url = check4proxies(url); url_free(url); - mp_msg(MSGT_OPEN, MSGL_INFO, "STREAM_HTTP(1), URL: %s\n", stream->url); + mp_msg(MSGT_OPEN, MSGL_V, "STREAM_HTTP(1), URL: %s\n", stream->url); seekable = http_streaming_start(stream, file_format); if((seekable < 0) || (*file_format == DEMUXER_TYPE_ASF)) { streaming_ctrl_free(stream->streaming_ctrl); @@ -915,7 +915,7 @@ stream->streaming_ctrl->url = check4proxies(url); url_free(url); - mp_msg(MSGT_OPEN, MSGL_INFO, "STREAM_HTTP(2), URL: %s\n", stream->url); + mp_msg(MSGT_OPEN, MSGL_V, "STREAM_HTTP(2), URL: %s\n", stream->url); seekable = http_streaming_start(stream, file_format); if(seekable < 0) { streaming_ctrl_free(stream->streaming_ctrl); diff -r 8515422fd00d -r b6eed21e0535 stream/stream_rtsp.c --- a/stream/stream_rtsp.c Thu Oct 12 18:29:26 2006 +0000 +++ b/stream/stream_rtsp.c Thu Oct 12 22:24:19 2006 +0000 @@ -140,7 +140,7 @@ URL_t *url; extern int index_mode; - mp_msg (MSGT_OPEN, MSGL_INFO, "STREAM_RTSP, URL: %s\n", stream->url); + mp_msg (MSGT_OPEN, MSGL_V, "STREAM_RTSP, URL: %s\n", stream->url); stream->streaming_ctrl = streaming_ctrl_new (); if (!stream->streaming_ctrl) return STREAM_ERROR;