diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-01-27 22:35:07 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-01-27 22:35:07 +0000 |
commit | 48a592e0807619801a41cba4471fa8fc5feacf19 (patch) | |
tree | 07fc5a0c0942370db3ea0dc8087600a080191f40 | |
parent | 458d2afa1d08cbc4377578618fd5d3a78b301276 (diff) | |
download | xine-lib-48a592e0807619801a41cba4471fa8fc5feacf19.tar.gz xine-lib-48a592e0807619801a41cba4471fa8fc5feacf19.tar.bz2 |
Fix a typo and output the PTS value (as for other, nearby, metronome messages).
[Reinhard Nissl]
CVS patchset: 7853
CVS date: 2006/01/27 22:35:07
-rw-r--r-- | src/xine-engine/metronom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/metronom.c b/src/xine-engine/metronom.c index 0563a9ec2..809204af9 100644 --- a/src/xine-engine/metronom.c +++ b/src/xine-engine/metronom.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: metronom.c,v 1.142 2005/06/29 20:54:34 hadess Exp $ + * $Id: metronom.c,v 1.143 2006/01/27 22:35:07 dsalt Exp $ */ #ifdef HAVE_CONFIG_H @@ -328,7 +328,7 @@ static void metronom_handle_discontinuity (metronom_t *this, int type, if (this->audio_vpts > cur_time) { /* still frame with audio */ this->video_vpts = this->audio_vpts; - xprintf(this->xine, XINE_VERBOSITY_DEBUG, "video vpts adjusted to audio vpts\n"); + xprintf(this->xine, XINE_VERBOSITY_DEBUG, "video vpts adjusted to audio vpts %" PRId64 "\n", this->video_vpts); } else { /* still frame, no audio */ this->video_vpts = this->prebuffer + cur_time; @@ -346,7 +346,7 @@ static void metronom_handle_discontinuity (metronom_t *this, int type, /* video, no sound */ this->audio_vpts = this->video_vpts; this->audio_vpts_rmndr = 0; - xprintf(this->xine, XINE_VERBOSITY_DEBUG, "audio vpts adjusted to audio vpts\n"); + xprintf(this->xine, XINE_VERBOSITY_DEBUG, "audio vpts adjusted to video vpts %" PRId64 "\n", this->video_vpts); } else { /* video + audio */ } |