similar to: Libspeex-cygwin-EVC++ 3.0

Displaying 20 results from an estimated 4000 matches similar to: "Libspeex-cygwin-EVC++ 3.0"

2004 Aug 06
0
Libspeex-cygwin-EVC++ 3.0
I have built the Speex library for Pocket PC using the FIXED_POINT flag in eVC 3. It works fine. I think the iPAQ 3600 (ARM SA 1110, I think this is a 200mhz cpu), is a bit slow for encoding in realtime. The Speex encode function takes 30+ ms to encode one 20ms sample frame in a debug build. I didn't try the release build with compiler optimization. The iPAQ 3970 (PXA250, I think this is a
2004 Aug 06
1
Libspeex-cygwin-EVC++ 3.0
Hello Carl, Can you send me libspeex compilated in eVC. And can you describe where and how set the FIXED_POINT flag in eVC. Thanks you. Regards. Rodrigo. <p>----- Mensaje original ----- De: "Carl Douglas"<CarlD@itouchmobility.com> Env.: 15/01/04 17:43:43 Para: "speex-dev@xiph.org"<speex-dev@xiph.org> Asunto: RE: [speex-dev]
2004 Aug 06
1
Fatal end of line errors occur when trying to compile libspeex in eVC++ 3.0 or 4.0
Hi all, I'm trying to create a speex decoder library for Pocket PC platform. I then intend to use this library within my .NET Compact Framework application. But when I simply try to compile the libspeex files within my eMbedded Visual C++ environment, I receive the following error c:\documents and settings\asheeshv.grapecity\desktop\pocketpcdll\speex\bits.c(367) : fatal error C1010:
2010 May 24
0
[LLVMdev] linker errors when trying to link llvm-gcc
Hi Anatoly, > any ideas what library has these symbols > > lang_eh_catch_all > get_pointer_alignment > validate_arglist it sounds like you are trying to build a version of llvm-gcc without LLVM enabled. Did you specify --enable-llvm=path_to_llvm_build_directory when configuring llvm-gcc? These symbols are all defined in llvm-gcc itself, but only when ENABLE_LLVM is defined.
2004 Aug 06
1
status report on the Windows CE (PocketPC) ACM codec
> > It was essentially my own mistake. After the Embedded C++ IDE crashed unexpectedly, > the .lib file was no longer present in the project settings (the project had not been saved) > so all the errors I got were caused by a missing .lib reference in the link stage! > I had to change my cross compiler target to "arm-wince-pe" because otherwise the > object/.lib files
2004 Aug 06
3
status report on the Windows CE (PocketPC) ACM codec
Christian Buchner wrote: > Now here is where I have problems and not yet found a solution: I know very little about this, so take everything that follows with a large pinch of salt. > * the function names exported in the .lib created by gcc are not compatible > with the function name decorations that the VisualC++ embedded linker expects. Which version of gcc are you using? I know
2004 Sep 29
1
Ask about arm-asm perfomance
How big is difference between encoding speeds of libspeex compiled with arm-asm, and without it? My application is written in EVC++, but there is no inline assembler, so I have to compile speex without arm-asm. But I still trying to find a way to use speex with arm-asm under my EVC++ application. I tried to compile speex with arm-asm under gcc (arm-wince-pe), but generated static link
2005 Jul 12
1
How to compile libspeex to .lib
Hi, I am probably missing something really simple (since I don't know very much about compiling or anything) but I am trying to compile the latest version of Speex (1.1.10) into a .lib file. I have compiled it with GCC under Cygwin with -enable-fixed-point and --enable-static, and have produced a .a file. I want to be able to use it with eMbedded Visual C++ 4.0. I guessed that I would need
2004 Aug 06
1
Project setting for embedded visual c++ 3.0
Hi all, I'm quite new to Speex and i'm tryng to do a porting of it for my pocketpc platform.... The encodig time seem to be too hight, i think something goes wrong putting --enable-fixed-point --enable-fixed-point-debug --enable-arm-asm in project setting of EVC++ 3.0 (i've got EVC++ 4.0 too) i do my test with an Ipaq 3850 (206 MHz Intel® Strong ARM 32-bit RISC Processor) running
2010 May 25
2
[LLVMdev] linker errors when trying to link llvm-gcc
I am trying to build a cross compiler for arm on linux, here is how i have configured it cd llvm-gcc-4.2-2.7.source-objtree ../llvm-gcc-4.2-2.7.source/configure --enable-llvm=/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-2.7 --enable-multilib --enable-target-optspace --enable-interwork --with-newlib --with-gnu-as --with-gnu-ld --enable-languages=c,c++
2005 Dec 20
3
CVS compilation and EVC++ 4.0
Hi all, I'd like you to know i'm not able to build Speex library anymore from CVS without modfing the code in mdf.c. This is due to the fact that EVC++ compiler doesn't like memory allocations in this form: spx_word16_t w[N]; where N is not a constant. I know this is not an error for gcc compiler and ANSI standard but it is in VS2005 and EVC++ 4.0 If someone knows how to compile
2005 Dec 20
0
CVS compilation and EVC++ 4.0
I'll try fixing that. It's funny "gcc -ansi -Wall" doesn't even complain about it despite the fact it's not C89-compliant. In the mean time, you can always replace it with: spx_word16_t w[1024]; and you'll be fine (unless you try AEC with a frame size > 512). Sorry about the inconvenience. <cheap shot>Must be the price to pay for using an inferior
2005 Dec 20
0
CVS compilation and EVC++ 4.0
Yeah, MSVC doesn't like that notation.. You can use alloca which allocates stuff on the stack instead I believe. -----Original Message----- From: speex-dev-bounces@xiph.org [mailto:speex-dev-bounces@xiph.org] On Behalf Of Ralph Giles Sent: Tuesday, December 20, 2005 9:52 AM To: Jean-Marc Valin Cc: Speex Mailing List Subject: Re: [Speex-dev] CVS compilation and EVC++ 4.0 On Tue, Dec 20, 2005
2005 Dec 20
2
CVS compilation and EVC++ 4.0
On Tue, Dec 20, 2005 at 09:22:36PM +1100, Jean-Marc Valin wrote: > I'll try fixing that. It's funny "gcc -ansi -Wall" doesn't even complain > about it despite the fact it's not C89-compliant. "gcc -ansi -pedantic -Wall" does the trick. Does seem like a bug if there are other major compilers that don't implement this though. Does the non-embedded
2004 Aug 06
2
Please 30 second to look a my code
Hi i'm developing a sort of VoIP application for my ipaq using speex... I'm still at beginning and i have many problems encoding and decoding my wav files....output is only noise! Why? I'm using Libspeex 1.1.3, Embedded VisualC++ 3.0, Ipaq 3850(206 MHz Intel® Strong ARM 32-bit RISC Processor) PocketPC 2002 (Windows CE 3.0). Libspeex is complied with the definition of
2004 Aug 06
2
1.0.3 in ACM soon
Hi Rodrigo, I'm Fabio and i'm in your identical situation, i need Speex to run on PocketPC in real time mode for my tesis. I've to develop a sort of VoIP apllication for pocketPC... I recently discover speex (Only yesterday i joined this mailing list....) and I'm doing many test using mostly VC++ 6.0 but only because i'm still undestandig speex... I did many works with EVC++
2012 Jul 10
9
[PATCH] stubdom: fix errors in newlib
# HG changeset patch # User Olaf Hering <olaf@aepfle.de> # Date 1341839122 -7200 # Node ID 2dd50c201ca0d3542f3589942ae9e51d33ec7509 # Parent 42f76d536b116d2ebad1b6705ae51ecd171d2581 stubdom: fix errors in newlib rpmlint found a few code bugs in newlib, and marks them as errors after rpm build. Add another newlib patch and apply it during stubdom build. I: A function uses a
2013 May 22
19
Install vTPM on Xen-4.2.2
Hi, I‘m trying to install vTPM based on Xen-4.2.2, linux-kernel 3.9.1 (Dom0) and TPM emulator. However, I cannot find the TPM backed driver in this version of Dom0 linux kernel. There is no CONFIG_XEN_TPMDEV_BACKEND in the kernel config file. The config file for Dom0 is attached. Maybe it provides some useful information. So, how to install a Xen TPM backend driver in the Dom0 linux-kernel.
2015 Mar 11
5
[LLVMdev] Customize Standard C Library Using LLVM (to support llvm backend optimization)
Purpose: I implemented a pass on LLVM backend that changes the output format of *ARM* assembly/binary (e.g add a jump at the end of each basic block to eliminate fall through). By calling: llc -march=arm somefile.bc it generates expected arm assembly/binary that runs properly on arm gnu linux (I use qemu-arm and gem5 to simulate it). Now I want to do the same thing on standard c library, but
2008 Jun 04
2
Problems with newlib port
Hello, I have noticed that Peter wanted to port newlib to syslinux project some time ago. It seems that the porting was not finished. Peter mentioned (http://syslinux.zytor.com/archives/2004-February/003168.html) that sucj job would require a lot of efforts. At the same time newlib is usually regarded as a "highly portable C-library". I am wondering what are the major