From e77acd698aa34a81e62d6108bdb9f972035a2fe2 Mon Sep 17 00:00:00 2001 From: Marcus Overhagen Date: Mon, 8 May 2006 22:29:46 +0000 Subject: [PATCH] disabled some debug output git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17379 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/media/MediaTrack.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/kits/media/MediaTrack.cpp b/src/kits/media/MediaTrack.cpp index b2fecd2414..a4dc560b5f 100644 --- a/src/kits/media/MediaTrack.cpp +++ b/src/kits/media/MediaTrack.cpp @@ -225,7 +225,7 @@ BMediaTrack::CountFrames() const { CALLED(); int64 frames = fExtractor ? fExtractor->CountFrames(fStream) : 0; - printf("BMediaTrack::CountFrames: %Ld\n", frames); +// printf("BMediaTrack::CountFrames: %Ld\n", frames); return frames; } @@ -235,7 +235,7 @@ BMediaTrack::Duration() const { CALLED(); bigtime_t duration = fExtractor ? fExtractor->Duration(fStream) : 0; - printf("BMediaTrack::Duration: %Ld\n", duration); +// printf("BMediaTrack::Duration: %Ld\n", duration); return duration; } @@ -294,7 +294,7 @@ BMediaTrack::ReadFrames(void *out_buffer, if (mh) *mh = header; - PRINT(1, "BMediaTrack::ReadFrames: stream %ld, start-time %5Ld.%06Ld, %Ld frames\n", fStream, header.start_time / 1000000, header.start_time % 1000000, *out_frameCount); +// PRINT(1, "BMediaTrack::ReadFrames: stream %ld, start-time %5Ld.%06Ld, %Ld frames\n", fStream, header.start_time / 1000000, header.start_time % 1000000, *out_frameCount); return result; }