Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
14e329dd
Commit
14e329dd
authored
Jan 31, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't reinvent __arm__
parent
997ae1dc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
9 deletions
+4
-9
configure.ac
configure.ac
+0
-5
modules/codec/wmafixed/bitstream.h
modules/codec/wmafixed/bitstream.h
+1
-1
modules/codec/wmafixed/wmadeci.c
modules/codec/wmafixed/wmadeci.c
+1
-1
modules/codec/wmafixed/wmafixed.h
modules/codec/wmafixed/wmafixed.h
+2
-2
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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