1
0
Fork 0
forked from len0rd/rockbox

Missed some more debug statements in libasf.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27797 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Giacomelli 2010-08-12 23:52:07 +00:00
parent 3e074a6410
commit 9ba67fb35e

View file

@ -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*/