diff options
| author | phintuka <phintuka> | 2011-11-28 09:31:00 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2011-11-28 09:31:00 +0000 |
| commit | 5c7d59c4190a7d1fdec2b2267fdc0e5445848ccc (patch) | |
| tree | a6c29c45a9211e2ac9b7c8df4cf0c99e274f122f | |
| parent | ef7dea7d3ed56a8374783dcdabf192d90e6a678d (diff) | |
| download | xineliboutput-5c7d59c4190a7d1fdec2b2267fdc0e5445848ccc.tar.gz xineliboutput-5c7d59c4190a7d1fdec2b2267fdc0e5445848ccc.tar.bz2 | |
Reduced logging and fixed log messages
| -rw-r--r-- | xine/demux_xvdr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xine/demux_xvdr.c b/xine/demux_xvdr.c index c8405728..44f44d6c 100644 --- a/xine/demux_xvdr.c +++ b/xine/demux_xvdr.c @@ -136,7 +136,7 @@ static const char * get_decoder_name(xine_t *xine, int buf_type) } #define LOG_DECODER(buf_type, name) \ - LOGMSG("Using %-10s decoder \"%s\"", \ + LOGDBG("Using %-10s decoder \"%s\"", \ name, get_decoder_name(this->stream->xine, buf_type)); static void detect_video_decoders(demux_xvdr_t *this) @@ -146,14 +146,14 @@ static void detect_video_decoders(demux_xvdr_t *this) name = get_decoder_name(this->stream->xine, BUF_VIDEO_MPEG); if (!strcmp(name, "ffmpegvideo")) this->ffmpeg_mpeg2_decoder = 1; - LOGMSG("Using MPEG video decoder \"%s\" (%s)", - name, this->ffmpeg_mpeg2_decoder ? "FFmpeg" : "libmpeg2"); + LOGDBG("Using MPEG video decoder \"%s\"%s", + name, this->ffmpeg_mpeg2_decoder ? " (FFmpeg)" : ""); name = get_decoder_name(this->stream->xine, BUF_VIDEO_H264); if (!strcmp(name, "dshowserver")) this->coreavc_h264_decoder = 1; - LOGMSG("Using H.264 decoder \"%s\" (%s)", - name, this->coreavc_h264_decoder ? "dshowserver (CoreAVC)" : "FFmpeg"); + LOGDBG("Using H.264 decoder \"%s\"%s", + name, this->coreavc_h264_decoder ? " (dshowserver (CoreAVC))" : ""); LOG_DECODER(BUF_VIDEO_VC1, "VC-1"); } |
