diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-04-30 01:48:18 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-04-30 01:48:18 +0000 |
commit | 1b568a8bfd7e9d68f14296fc68d38cde45c3fd49 (patch) | |
tree | 3527e90fc5e9e7465ca54bbda44902376be2b008 | |
parent | 0ec1fddf7f2eaf8eb29123d79e3462e723a37c1d (diff) | |
download | xine-lib-1b568a8bfd7e9d68f14296fc68d38cde45c3fd49.tar.gz xine-lib-1b568a8bfd7e9d68f14296fc68d38cde45c3fd49.tar.bz2 |
remove sound card drift debug messages
CVS patchset: 1812
CVS date: 2002/04/30 01:48:18
-rw-r--r-- | src/xine-engine/metronom.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/xine-engine/metronom.c b/src/xine-engine/metronom.c index cd7611529..586f487ab 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.83 2002/04/27 16:33:24 miguelfreitas Exp $ + * $Id: metronom.c,v 1.84 2002/04/30 01:48:18 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -341,9 +341,10 @@ static void metronom_got_video_frame (metronom_t *this, vo_frame_t *img) { pthread_mutex_lock (&this->lock); -/* +#ifdef LOG printf("metronom: got_video_frame pts = %lld\n", pts ); -*/ +#endif + if (this->in_discontinuity) { this->in_discontinuity--; @@ -537,9 +538,9 @@ static void metronom_set_option (metronom_t *this, int option, int64_t value) { break; case METRONOM_ADJ_VPTS_OFFSET: this->vpts_offset += value; -/*#ifdef LOG*/ +#ifdef LOG printf ("metronom: adjusting vpts_offset by %lld\n", value ); -/*#endif*/ +#endif break; default: printf ("metronom: unknown option in set_option: %d\n", |