search for: packet_no

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

Did you mean: packet_1
2008 Apr 04
0
speexdec 1.2.3
...er(&oy, 200); /*Read bitstream from input file*/ nb_read = fread(data, sizeof(char), 200, fin); ogg_sync_wrote(&oy, nb_read); /*Loop for all complete pages we got (most likely only one)*/ while (ogg_sync_pageout(&oy, &og)==1) { int packet_no; if (stream_init == 0) { ogg_stream_init(&os, ogg_page_serialno(&og)); stream_init = 1; } if (ogg_page_serialno(&og) != os.serialno) { /* so all streams are read. */ ogg_stream_reset_serialno(&os, ogg_page_serialno(&og)); }...
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
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 [mail...
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...