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:
parent
3e074a6410
commit
9ba67fb35e
1 changed files with 2 additions and 2 deletions
|
|
@ -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*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue