search for: frame_offset

Displaying 5 results from an estimated 5 matches for "frame_offset".

Did you mean: lframe_offset0
2007 Jul 25
2
RE: Crude delay?
This is regarding the speexdec.c of the latest beta2 version. After decoding a frame, for packet_no =1, a new_frame_size and frame_offset are calculated and the number of decoded bytes writting onto a file depends on them. Why are they calculated? What happens if i directly write all the 320 shorts I get after decodong onto a file? --sharan -----Original Message----- From: Jean-Marc Valin [mailto:jean-marc.valin@usherbrooke.ca] Sen...
2008 Apr 04
0
speexdec 1.2.3
...) { for (i=0;i<frame_size*channels;i++) out[i]=le_short(output[i]); } else { for (i=0;i<frame_size*channels;i++) out[i]=output[i]; } { int frame_offset = 0; int new_frame_size = frame_size; /*printf ("packet %d %d\n", packet_no, skip_samples);*/ /*fprintf (stderr, "packet %d %d %d\n", packet_no, skip_samples, lookahead);*/ if (packet_no == 1 &am...
2008 Apr 04
2
speexdec 1.2.3
On Fri, Apr 4, 2008 at 12:19 AM, Jean-Marc Valin <jean-marc.valin at usherbrooke.ca> wrote: > Jahn, Ray (R.) a ?crit : > > > Dear Speex codec community: > > > > I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any
2007 Jul 25
2
Crude delay?
Hello, What is meant by crude delay in PESQ quality testing? And what is its tolerant limit for good quality. rgds, Sharan
2007 Jul 25
0
Re: Crude delay?
Sharanu wrote: > This is regarding the speexdec.c of the latest beta2 version. > After decoding a frame, for packet_no =1, a new_frame_size and > frame_offset are calculated and the number of decoded bytes > writting onto a file depends on them. Why are they calculated? > What happens if i directly write all the 320 shorts I get after > decodong onto a file? You'll just get a delay that corresponds to the lookahead of Speex. No big deal....