From fcfd1284315cd4d44192adbf8505a5f54716032b Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 10 Apr 2009 14:20:31 +0000 Subject: [PATCH] remove debugging output --- morituri/common/task.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/morituri/common/task.py b/morituri/common/task.py index 6186e5b..1910057 100644 --- a/morituri/common/task.py +++ b/morituri/common/task.py @@ -222,8 +222,6 @@ class CRCAudioRipTask(CRCTask): self._trackNumber = trackNumber self._trackCount = trackCount self._discFrameCounter = 0 - print 'TOMAS: track %d of %d' % (trackNumber, trackCount) - print 'THOMAS: frame Length: %d' % self._frameLength def do_crc_buffer(self, buffer, crc): self._discFrameCounter += 1 @@ -252,9 +250,9 @@ class CRCAudioRipTask(CRCTask): crc += (self._bytes / 4 + i + 1) * value crc &= 0xFFFFFFFF offset = self._bytes / 4 + i + 1 - if offset % FRAMES_PER_DISC_FRAME == 0: - print 'THOMAS: frame %d, offset %d, value %d, CRC %d' % ( - offset / FRAMES_PER_DISC_FRAME, offset, value, crc) + # if offset % FRAMES_PER_DISC_FRAME == 0: + # print 'THOMAS: frame %d, offset %d, value %d, CRC %d' % ( + # offset / FRAMES_PER_DISC_FRAME, offset, value, crc) return crc class SyncRunner: