similar to: FIXED_POINT warns on compute_weighted_codebook

Displaying 20 results from an estimated 300 matches similar to: "FIXED_POINT warns on compute_weighted_codebook"

2005 Dec 09
1
[PATCH] compute_weighted_codebook a little bit faster
Hi, here is a patch making the function compute_weighted_codebook a little bit faster. Not so impressive but avoid a loop and is really faster on small platforms like the MIPS I'm working on. Enjoy, Matthieu Poullet -------------- next part -------------- A non-text attachment was scrubbed... Name: cwc_patch Type: application/octet-stream Size: 1226 bytes Desc: not available Url :
2008 Nov 12
2
SPEEX on iPhone ?
ok, interesting ! Do you know how much CPU it takes for a real time encoding/decoding ? it's more around 20% or 80% instead ? Do you know if it works for 44100 Hz / 32kbps / Quality =8 ? thanks again. Vincent ----- Original Message ----- From: "Ashhar Farhan" <farhan at phonestack.com> To: "Vincent Burel" <vincent.burel at vb-audio.com> Cc: <speex-dev at
2007 Jun 19
1
VS2005 build
Hi I downloaded speex-1.2beta2 from svn.xiph.org/releases/speex and am trying to build the win32/VS2005/libspeex/lipspeex.vcproj When I try to build the Release configuration, I get the following error: LNK1181: cannot open input file '.\Release\medfilter.obj' Trying to build the Debug or Release_Dynamic configurations gives a related error: C1083: cannot open source file:
2011 Jul 08
2
Playing captured speex frames
On Fri, Jul 8, 2011 at 6:39 AM, Ashhar Farhan <farhan at phonestack.com> wrote: > what you need to do is this: take the wireshark raw dump, read each > udp packet and write it back to another file. While writing back to > the new file skip the sizeof udp header + rtp header. I can't recall > how many bytes you need to skip, however, I suppose it would be in the > range of
2006 Jun 27
3
Windows Mobile build, memory allocation
I have sent the visual studio project files that compile the speex client to jean-marc directly (as an attachment), sometime this week, I will also upload the binary builds of static library files to my site www.phonestack.com. I am porting our LTP (lightweight telephony protocol) to some embedded systems. I require to run speex in an environment that doesn't support memory allocations. How
2008 Nov 10
3
SPEEX on iPhone ?
Hello Ashhar, thanks for your reply, but i'm a bit surprised. 1- Does it mean that it is possible to make a Real Time Encoding/Decoding with SPEEX on iPhone ? 2- What parameters have been used (QUALITY, SAMPLING_RATE, BITRATE) ? and what kind of CPU load do they measure for that ? Thanks by advance, Vincent ----- Original Message ----- From: "Ashhar Farhan" <farhan at
2006 Mar 14
1
Windows Mobile 5.0 SDK - SPEEX
Hello I've looked into SPEEX SDK and source codes provided on site www.speex.org , and I'm trying to include in my Visual Studio 2005 - Visual C++ SmartDevice WM 5.0 the facilities provided by SPEEX (both encoding/decoding).I've downloaded the header files (i.e. Speex.h Speex_bits.h etc) and also the libspeex.lib.After creating my encoding/decoding functions following the
2008 Nov 12
1
SPEEX on iPhone ?
Why don't you just try it? From what others have been reporting, it shouldn't take you long to get it running. You can use speexenc and speexdec for testing. On Nov 12, 2008, at 2:26, "Vincent Burel" <vincent.burel at vb-audio.com> wrote: > ok, thanks for these precision, and do you have some measure about > CPU load > ? > i really would like to get a
2005 Jan 25
1
"spx_word16_t *" is incompatible with parameter of type "float *"
Hi, I am bring SPEEX up on Analog Device's Blackfin (using Visual DSP++ tool set). The floating point was too slow on this fixed-point processor so I am going for the integer version. The floating point library build was very clean, but when I build with FIXED_POINT defined, the compiler exits when it find this discrepancy in \libspeex\cb_search.c : ".\libspeex\cb_search.c",
2005 Jun 12
1
Comparison
i have been working on a voip client that goes head-to-head with skype in technological terms. for this, we used speex wide-band codec. without the denoiser or the pre-processor, i find that speex quality at 16 khz sampling, 16-bit samples (mono) to be clearly superior to anything that skype offers. even though, at the moment, i am not using packet loss compensation, i find that speex is
2006 Jan 23
2
Compiler warnings with GCC 3.4.4 and perfomance question on a Arm 7
I am using speex on a Philips LPC2138 Arm 7 processor and have hit two compiler warnings when using FIXED_POINT and the Arm 4 asm code. In cb_search.c get a warning on the call to compute_weighted_codebook of: "passing arg 2 of 'compute_weighted_codebook' from incompatible pointer type' In cp_search_arm4.h it is defined as: static void compute_weighted_codebook(const signed
2006 Oct 22
2
Bug with the new preprocessor
Hello, I have an (Access violation reading location) on line 115 in the fftwrap.c : out[i] = scale*in[i]; with i = 1193 Only with preprocessor active Systems : Visual studio 2005, XP, WB 16000 Hz, last svn. Hope it helps you. Ouss -----Original Message----- From: speex-dev-bounces@xiph.org [mailto:speex-dev-bounces@xiph.org] On Behalf Of speex-dev-request@xiph.org Sent: dimanche 22 octobre
2004 Oct 29
2
speex on TI C5x fixed-point DSP
Jean-Marc Valin wrote: >Hi Jamey, > >Really cool to see Speex being ported to the C55xx and I'd be glad to >integrate the changes required in Speex (and the style's fine with me). > > I have the encoder and decoder running now and have verified that the encoder is bit-exact wrt to the fixed-point code running on x86 for the same 30-second audio sample. Encode and
2006 Feb 14
1
Bug in vbr_analysis
Hi Jean-Marc, I used the following code after init of the encoder to get the frame size of my RTP packets. char pcm_data[3200]; char speex_data[3200]; SpeexBits bits; memset(pcm_data, '\0', 3200); memset(speex_data, '\0', 3200); speex_bits_init(&bits); speex_bits_reset(&bits); speex_encode_int(codec_info->enc,
2005 Dec 12
1
Getting SING errors
Hello! I'm getting SING errors from the log() function. Here is the code inside the vbr_analysis() function. if (ener<60000) { if (vbr->consec_noise>2) qual-=0.5*(log(3.0 + vbr->consec_noise)-log(3)); if (ener<10000&&vbr->consec_noise>2) qual-=0.5*(log(3.0 + vbr->consec_noise)-log(3)); if (qual<0) qual=0;
2006 Oct 23
2
Bug with the new preprocessor
The frame size is 320 Ouss -----Original Message----- From: Jean-Marc Valin [mailto:jean-marc.valin@usherbrooke.ca] Sent: lundi 23 octobre 2006 18:26 To: Ouss Cc: speex-dev@xiph.org Subject: Re: [Speex-dev] Bug with the new preprocessor What frame size are you using? Jean-Marc Ouss a ?crit : > Hello, > > I have an (Access violation reading location) on line 115 in the fftwrap.c
2008 Nov 12
2
SPEEX on iPhone ?
I can confirm that it will run in real time on iPhone if you compile with FIXED_POINT defined; it will also run in real time if you have FLOATING_POINT defined and disable 'Compile for Thumb' in the target's build settings in xcode. Wideband works too. Cheers, Dave
2006 Jan 18
2
Errors in speex lib with Blackfin
Hello! I'v downloaded speex lib 1.1.11.1. I am trying to port speex lib to Blackfin processor. I am using VisualDSP++ 4.0. If I am compiling source codes with using floating point everything ok. When I am compiling with FIXED_POINT defined everything's ok and code works about two times faster. But when I am defining BFIN_ASM I am getting several compiling errors in Blackfin assembler
2009 Jan 27
1
VQ: elucidations!
Dear Valin, Please, can you explain me the mean of the routines' parameters: 1. void vq_nbest(); 2. static void compute_weighted_codebook(); 3. static inline void target_update(); 4. void split_cb_search_shape_sign(); 5. void split_cb_shape_sign_unquant(); 6. void noise_codebook_quant(); 7. void noise_codebook_unquant(); and what they do briefly??? It's very difficult understand a
2007 Sep 19
1
Speex Questions <./Configure %install make [-enable-fixed-point] setting> and Encoding Times etc...
Hi, Speex-dev I've been able to get Speex to compile on SM400M(MIPSII) with problems. ------ Rebuild All started: Project: speexenc, Configuration: Debug SM400M (MIPSII) ------ Deleting intermediate and output files for project 'speexenc', configuration 'Debug|SM400M (MIPSII)' Compiling... getopt.c getopt1.c skeleton.c speexenc.c .\speexenc.c(501) : warning