diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-11-27 00:00:34 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-11-27 00:00:34 +0000 |
commit | 8c189f8457736c655a1d70cc974526b0e9d990f2 (patch) | |
tree | c24b06e65e70dda0becbb43e29b9f8e2c0349d3f /src/xine-engine/metronom.c | |
parent | b7b51c776e50ea0723d0f4967cbf5d3cb7bccdb4 (diff) | |
download | xine-lib-8c189f8457736c655a1d70cc974526b0e9d990f2.tar.gz xine-lib-8c189f8457736c655a1d70cc974526b0e9d990f2.tar.bz2 |
Improve DTS support.
CVS patchset: 1121
CVS date: 2001/11/27 00:00:34
Diffstat (limited to 'src/xine-engine/metronom.c')
-rw-r--r-- | src/xine-engine/metronom.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-engine/metronom.c b/src/xine-engine/metronom.c index 2924d6a4b..19bd88523 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.37 2001/11/18 03:53:25 guenter Exp $ + * $Id: metronom.c,v 1.38 2001/11/27 00:00:35 jcdutton Exp $ */ #ifdef HAVE_CONFIG_H @@ -617,6 +617,8 @@ static uint32_t metronom_got_audio_samples (metronom_t *this, uint32_t pts, uint32_t vpts; #ifdef METRONOM_LOG + printf ("metronom: DTS pts is %u, last_pts is %u, diff = %d\n", + pts, this->last_audio_pts, pts - this->last_audio_pts); printf ("metronom: got %d audio samples (pts=%d)\n", nsamples,pts); #endif |