search for: fatahillah

Displaying 4 results from an estimated 4 matches for "fatahillah".

2006 Sep 21
2
AEC in WB mode fixed yet ?
> Today's Topics: > > 1. AEC with WB mode (Jean-Christophe.Berge@etu.enseeiht.fr) > 2. Multiple frame encode and decode (Reza Fatahillah) > 3. cant link speex_echo.h (jesus) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 20 Sep 2006 08:46:03 +0200 (CEST) > From: Jean-Christophe.Berge@etu.enseeiht.fr > Subject: [Speex-dev] AEC with WB mode > To...
2004 Aug 06
0
Encode-Decode Problem
I have non terminate loop when decode speex bits stream. These are my pseudocode for encoding and decoding -- Encode -- while(stillhaveinput) { speex_encode(enc_state, curr_spx_frame, &bits); } speex_bits_insert_terminator(&bits); speex_bits_write(&bits,(char *)(pBufferOut),MAX_LEN); -- Decode (these code loop forever) -- speex_bits_read_from(&bits, (char *) pBuf,act_length);
2006 Sep 07
1
Single frame or multiple frame inside rtp packet?
Hi, Sorry if my question not related to speex. I have created a voip application using speex. My internet line is 64Kbps. I`m using narrow band mode, 8000 bitrate, 20ms of 8000Khz sampling rate, no buffering, no preprocessing, just set bitrate and go. When i send single frame inside rtp the sound was not good, choppy and noisy. But when i pack around 8 frame inside rtp packet, the sound was
2006 Sep 19
0
Multiple frame encode and decode
Hi, I have one rtp packet with multiple frame inside e.g 6 speex frames. I packed those frames manually by concating them into a buffer(memcpy at certain array index). Then at the other side, i decode them in a while loop using speex_decode_int(), and hoping that this function will decode one frame at a time. But when i inspected nbBits, it seemed all of 6 frames decoded at once. I guess the