Displaying 2 results from an estimated 2 matches for "speex_test".
2004 Aug 06
0
artefacts in Speex decoded signal
...t=1.12 s. This is just before
an attack which is present in the signal.
I did not try to solve the problems but if someone has time to check what is
going on it would be helpful. The original and the decoded (NB at 8 kbit/s
with enh on) file are included in the zip file.
Regards.
Hervé
<<speex_test.zip>>
<p>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: speex_test.zip
Type: application/zip
Size: 122266 bytes
Desc: speex_test.zip
Url : http://lists.xiph.org/pipermail/speex-dev/attachments/20030203/bc64a51b/speex_test.zip
2004 Sep 29
1
ARM w/ assembly & fixed point crash
I've targeted Speex to run under eCos with Thumb interworking using
arm-elf-gcc 3.3.3
I'd written a small test case to verifiy the operation:
#include <speex/speex.h>
void
speex_test(void)
{
SpeexBits bits;
unsigned int frame_size;
void *enc_state;
float *speex_frame;
cyg_uint64 t1, t2;
int i;
speex_frame = (float *)0x00030000; /* Address of Speex data */
speex_bits_init(&bits);
printf("Initializing Speex encoder...");
en...