diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2010-08-12 23:52:07 +0000 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2010-08-12 23:52:07 +0000 |
commit | 9ba67fb35e14751c2ce6b9f80a9ad57cf4ffaf74 (patch) | |
tree | 01102cfce62ecca6ed3311dfabdaea22fd8dd2ea /apps/codecs | |
parent | 3e074a6410fb7e3c939538fafb6c72b3e7c1040c (diff) |
Missed some more debug statements in libasf.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27797 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r-- | apps/codecs/libasf/asf.c | 4 |
1 files 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*/ |