search for: interp_request

Displaying 2 results from an estimated 2 matches for "interp_request".

Did you mean: interp_requested
2007 Mar 08
4
Introduction and patch
Hi, I'm one of the people working on the Rockbox project (http://www.rockbox.org) which is an open source alternative firmware for a range Digital Audio Players. Recently we integrated support for the Speex codec using libspeex and seems to work well. If you could add Rockbox to your list of software that supports Speex, that'd be great. So that's the introduction done. Now for
2007 Mar 08
0
Introduction and patch
...;timestamp; > jitter->span[i]=packet->span; > @@ -251,7 +251,7 @@ > float ontime_ratio_long; > float early_ratio_short; > float early_ratio_long; > - int chunk_size; > + int chunk_size = 0; > int incomplete = 0; > > if (jitter->interp_requested) > @@ -369,7 +369,7 @@ > /* Check for potential overflow */ > packet->len = jitter->len[i]; > /* Copy packet */ > - for (j=0;j<packet->len;j++) > + for (j=0;((unsigned)j)<packet->len;j++) > packet->data[j] = jitter...