X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mp3dec.c;h=f809daec441c1e5957c48171cdcd3eeb470977b0;hp=c02432eee8fa82ed8a1ab633afebac47fccb89df;hb=f5a29040feebefcec4472a67b3396b6bfae84f33;hpb=607ac63646d7c31aa1792dcf1d9a60e498654376 diff --git a/mp3dec.c b/mp3dec.c index c02432ee..f809daec 100644 --- a/mp3dec.c +++ b/mp3dec.c @@ -19,8 +19,8 @@ /** \file mp3dec.c paraslash's mp3 decoder */ #include "para.h" - #include "list.h" +#include "sched.h" #include "filter.h" #include "error.h" #include @@ -98,8 +98,8 @@ next_frame: out: if (pmd->stream.next_frame) { /* we still have some data */ size_t off = pmd->stream.bufend - pmd->stream.next_frame; - PARA_DEBUG_LOG("converted %zd, rate: %u, returning %zd\n", len - off, - fn->fc->samplerate, copy - off); +// PARA_DEBUG_LOG("converted %zd, rate: %u, returning %zd\n", len - off, +// fn->fc->samplerate, copy - off); return copy - off; } return copy;