From 9ba67fb35e14751c2ce6b9f80a9ad57cf4ffaf74 Mon Sep 17 00:00:00 2001 From: Michael Giacomelli Date: Thu, 12 Aug 2010 23:52:07 +0000 Subject: [PATCH] Missed some more debug statements in libasf. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27797 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libasf/asf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/codecs/libasf/asf.c b/apps/codecs/libasf/asf.c index 6297cf664a..1188fb4e08 100644 --- a/apps/codecs/libasf/asf.c +++ b/apps/codecs/libasf/asf.c @@ -404,7 +404,7 @@ int asf_seek(int ms, asf_waveformatex_t* wfx) /*check the time stamp of our packet*/ time = asf_get_timestamp(&duration); - DEBUGF("seeked to %d ms with duration %d\n", time, duration); + /*DEBUGF("seeked to %d ms with duration %d\n", time, duration);*/ if (time < 0) { /*unknown error, try to recover*/ @@ -415,7 +415,7 @@ int asf_seek(int ms, asf_waveformatex_t* wfx) } if ((time+duration>=ms && time<=ms) || count > 10) { - DEBUGF("Found our packet! Now at %d packet\n", packet_num); + /*DEBUGF("Found our packet! Now at %d packet\n", packet_num);*/ return time; } else { /*seek again*/