Displaying 7 results from an estimated 7 matches for "fixed_arm5".
Did you mean:
  fixed_arm5e
  
2011 Aug 09
4
not building with --enable-arm-asm -enable-arm5e-asm
...idden 
-MT cb_search.lo -MD -MP -MF .deps/cb_search.Tpo -c -o cb_search.lo 
cb_search.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../include -I.. 
-I/root/dump/include -g -O2 -fvisibility=hidden -MT cb_search.lo -MD -MP 
-MF .deps/cb_search.Tpo -c cb_search.c -fPIC -DPIC -o .libs/cb_search.o
fixed_arm5e.h: Assembler messages:
fixed_arm5e.h:41: Error: no such instruction: `smulbb %ecx,%ax,%di'
fixed_arm5e.h:50: Error: no such instruction: `smlabb %edx,%si,%edi,%ecx'
fixed_arm5e.h:50: Error: no such instruction: `smlabb %edi,%cx,%esi,%edx'
fixed_arm5e.h:41: Error: no such instruction: `...
2011 Apr 27
1
CELT on ARM?
I found a reference to "fixed_arm5e.h" in arch.h but cannot find the file.
Is it available for download somewhere?
 
Thx,
Mike
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/opus/attachments/20110427/7db64945/attachment-0002.htm
2013 May 17
1
[Patch]01-Add ARM5E macros
...py headers from other files and add company name, tell me if 
I'm wrong.
Also, if you have any question or comment about it, feel free to contact me.
Best regards,
-- 
Aur?lien Zanelli
Parrot SA
174, quai de Jemmapes
75010 Paris
France
-------------- next part --------------
diff --git a/celt/fixed_arm5e.h b/celt/fixed_arm5e.h
new file mode 100644
index 0000000..9eb970a
--- /dev/null
+++ b/celt/fixed_arm5e.h
@@ -0,0 +1,99 @@
+/* Copyright (C) 2007-2009 Xiph.Org Foundation
+   Copyright (C) 2003-2008 Jean-Marc Valin
+   Copyright (C) 2007-2008 CSIRO
+   Copyright (C) 2013      Parrot */
+/*
+   Red...
2005 Dec 29
0
libspeex_armce.lib
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
 
Could anyone tell me how libspeex_armce.lib Speex 1.1.6 was compiled?  
(http://www.speex.org/download/libspeex_armce.lib )
Does it exist some modified fixed_arm5e.h for Microsoft EVC arm-asm
compiler?
or the inline assemlby was compiled with GCC and linked through EVC
LINK.exe?
 if the latter was done could I know how to link with EVC ?
Objects in libspeex_armce.lib:
vc_ce.obj            // generated from vc_ce.c ?
speex_lpc.obj      // generated from sp...
2006 Apr 22
2
Major internal changes, TI DSP build change
> >I fixed it in svn. Could you check that?
> 
> Now all platforms match again.  Note that the measured SNR for this test 
> sample is lower than with the broken code (10.87 vs 11.10), but of course 
> this is no way to judge the real quality.
SNR, especially on a single sample, can be very misleading. Yet, could
you just check that the DSP results match what you get on a PC?
2017 May 29
0
[PATCH] Add CMake build script
...c
+	libspeex/speex_header.c
+	libspeex/window.c
+	libspeex/arch.h
+	libspeex/bfin.h
+	libspeex/cb_search_arm4.h
+	libspeex/cb_search_bfin.h
+	libspeex/cb_search_sse.h
+	libspeex/filters.h
+	libspeex/filters_arm4.h
+	libspeex/filters_bfin.h
+	libspeex/filters_sse.h
+	libspeex/fixed_arm4.h
+	libspeex/fixed_arm5e.h
+	libspeex/fixed_bfin.h
+	libspeex/fixed_debug.h
+	libspeex/lpc.h
+	libspeex/lpc_bfin.h
+	libspeex/ltp.h
+	libspeex/ltp_arm4.h
+	libspeex/ltp_sse.h
+	libspeex/math_approx.h
+	libspeex/misc_bfin.h
+	libspeex/nb_celp.h
+	libspeex/quant_lsp.h
+	libspeex/sb_celp.h
+	libspeex/stack_alloc.h
+	libspeex...
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
...edef spx_word32_t spx_sig_t;
#define LPC_SCALING  8192
#define SIG_SCALING  16384
#define LSP_SCALING  8192.
#define GAMMA_SCALING 32768.
#define GAIN_SCALING 64
#define GAIN_SCALING_1 0.015625
#define LPC_SHIFT    13
#define SIG_SHIFT    14
#define VERY_SMALL 0
#ifdef ARM5E_ASM
#include "fixed_arm5e.h"
#elif defined (ARM4_ASM)
#include "fixed_arm4.h"
#elif defined (FIXED_DEBUG)
#include "fixed_debug.h"
#elif defined (C55X_ASM)
#include "fixed_c55x.h"
#else
#include "fixed_generic.h"
#endif
#else
typedef float spx_mem_t;
typedef float spx_coef_t...