Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
14e329dd
Commit
14e329dd
authored
Jan 31, 2009
by
Rémi Denis-Courmont
Browse files
Don't reinvent __arm__
parent
997ae1dc
Changes
4
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
14e329dd
...
...
@@ -1085,11 +1085,6 @@ case "${host_cpu}" in
"")
ARCH=unknown
;;
arm*)
dnl use arm assembly
VLC_ADD_CFLAGS([wma_fixed],[-DCPU_ARM])
ARCH="${host_cpu}"
;;
*)
ARCH="${host_cpu}"
;;
...
...
modules/codec/wmafixed/bitstream.h
View file @
14e329dd
...
...
@@ -32,7 +32,7 @@
#include
<inttypes.h>
#include
<stdlib.h>
#ifdef
CPU_ARM
#ifdef
__arm__
#define CONFIG_ALIGN 1
#endif
...
...
modules/codec/wmafixed/wmadeci.c
View file @
14e329dd
...
...
@@ -90,7 +90,7 @@ VLC_TYPE vlcbuf4[VLCBUF4SIZE][2];
*
*/
#ifdef
CPU_ARM
#ifdef
__arm__
static
inline
void
vector_fmul_add_add
(
int32_t
*
dst
,
const
int32_t
*
data
,
const
int32_t
*
window
,
int
n
)
...
...
modules/codec/wmafixed/wmafixed.h
View file @
14e329dd
...
...
@@ -49,7 +49,7 @@ int64_t fixdiv64(int64_t x, int64_t y);
int32_t
fixsqrt32
(
int32_t
x
);
long
fsincos
(
unsigned
long
phase
,
int32_t
*
cos
);
#ifdef
CPU_ARM
#ifdef
__arm__
/*Sign-15.16 format */
...
...
@@ -138,7 +138,7 @@ static inline int32_t fixmul32b(int32_t x, int32_t y)
#endif
#ifdef
CPU_ARM
#ifdef
__arm__
static
inline
void
CMUL
(
int32_t
*
x
,
int32_t
*
y
,
int32_t
a
,
int32_t
b
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment