diff options
author | phintuka <phintuka> | 2012-03-10 20:56:30 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2012-03-10 20:56:30 +0000 |
commit | 7bc5f209ec668483298754c8de52b13a99bcfd34 (patch) | |
tree | e9898da22b1949e4920c568a65b38ad25003c9d7 | |
parent | 615a043c30c6507b89d6816d29a27162b66eb71a (diff) | |
download | xineliboutput-7bc5f209ec668483298754c8de52b13a99bcfd34.tar.gz xineliboutput-7bc5f209ec668483298754c8de52b13a99bcfd34.tar.bz2 |
Reduced logging
-rw-r--r-- | xine/vo_lastpts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xine/vo_lastpts.c b/xine/vo_lastpts.c index 7346d4bc..9c5c2e5c 100644 --- a/xine/vo_lastpts.c +++ b/xine/vo_lastpts.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: vo_lastpts.c,v 1.6 2012-03-07 08:25:37 phintuka Exp $ + * $Id: vo_lastpts.c,v 1.7 2012-03-10 20:56:30 phintuka Exp $ * */ @@ -36,7 +36,7 @@ typedef struct { static void detect_xvdr_metronom(lastpts_hook_t *this, xine_stream_t *stream) { if (stream->metronom->get_option(stream->metronom, XVDR_METRONOM_ID) == XVDR_METRONOM_ID) { - LOGMSG("new stream is vdr stream"); + LOGDBG("new stream is vdr stream"); this->xvdr_metronom = stream->metronom; this->xvdr_stream = stream; } @@ -66,7 +66,7 @@ static void lastpts_display_frame(vo_driver_t *self, vo_frame_t *vo_img) * This prevents flooding log with "unknown option in set_option" messages */ if (vo_img->stream != this->prev_stream) { - LOGMSG("stream changed from %p to %p", this->prev_stream, vo_img->stream); + LOGDBG("stream changed from %p to %p", this->prev_stream, vo_img->stream); this->prev_stream = vo_img->stream; detect_xvdr_metronom(this, vo_img->stream); |