Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
fdk-aac
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
fdk-aac
Commits
50b1de17
Commit
50b1de17
authored
Sep 05, 2012
by
Martin Storsjo
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'aosp/master'
parents
8e4d5d9d
fef22086
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
36 deletions
+5
-36
libFDK/include/mips/cplx_mul.h
libFDK/include/mips/cplx_mul.h
+4
-24
libFDK/include/mips/fixmul_mips.h
libFDK/include/mips/fixmul_mips.h
+1
-7
libSYS/include/genericStds.h
libSYS/include/genericStds.h
+0
-2
libSYS/src/cmdl_parser.cpp
libSYS/src/cmdl_parser.cpp
+0
-3
No files found.
libFDK/include/mips/cplx_mul.h
View file @
50b1de17
...
@@ -108,20 +108,9 @@ inline void cplxMultDiv2( FIXP_DBL *c_Re,
...
@@ -108,20 +108,9 @@ inline void cplxMultDiv2( FIXP_DBL *c_Re,
FIXP_DBL
b_Im
)
FIXP_DBL
b_Im
)
{
{
INT
result
;
INT
result
;
result
=
(((
long
long
)
a_Re
*
b_Re
)
-
((
long
long
)
a_Im
*
b_Im
))
>>
32
;
__asm__
(
"mult %[a_Re], %[b_Re];
\n
"
"msub %[a_Im], %[b_Im];
\n
"
:
"=hi"
(
result
)
:
[
a_Re
]
"r"
(
a_Re
),
[
b_Re
]
"r"
(
b_Re
),
[
a_Im
]
"r"
(
a_Im
),
[
b_Im
]
"r"
(
b_Im
)
:
"lo"
);
*
c_Re
=
result
;
*
c_Re
=
result
;
result
=
(((
long
long
)
a_Re
*
b_Im
)
-
((
long
long
)
a_Im
*
b_Re
))
>>
32
;
__asm__
(
"mult %[a_Re], %[b_Im];
\n
"
"madd %[a_Im], %[b_Re];
\n
"
:
"=hi"
(
result
)
:
[
a_Re
]
"r"
(
a_Re
),
[
b_Im
]
"r"
(
b_Im
),
[
a_Im
]
"r"
(
a_Im
),
[
b_Re
]
"r"
(
b_Re
)
:
"lo"
);
*
c_Im
=
result
;
*
c_Im
=
result
;
}
}
#endif
#endif
...
@@ -135,18 +124,9 @@ inline void cplxMult( FIXP_DBL *c_Re,
...
@@ -135,18 +124,9 @@ inline void cplxMult( FIXP_DBL *c_Re,
FIXP_DBL
b_Im
)
FIXP_DBL
b_Im
)
{
{
INT
result
;
INT
result
;
__asm__
(
"mult %[a_Re], %[b_Re];
\n
"
result
=
(((
long
long
)
a_Re
*
b_Re
)
-
((
long
long
)
a_Im
*
b_Im
))
>>
32
;
"msub %[a_Im], %[b_Im];
\n
"
:
"=hi"
(
result
)
:
[
a_Re
]
"r"
(
a_Re
),
[
b_Re
]
"r"
(
b_Re
),
[
a_Im
]
"r"
(
a_Im
),
[
b_Im
]
"r"
(
b_Im
)
:
"lo"
);
*
c_Re
=
result
<<
1
;
*
c_Re
=
result
<<
1
;
result
=
(((
long
long
)
a_Re
*
b_Im
)
-
((
long
long
)
a_Im
*
b_Re
))
>>
32
;
__asm__
(
"mult %[a_Re], %[b_Im];
\n
"
"madd %[a_Im], %[b_Re];
\n
"
:
"=hi"
(
result
)
:
[
a_Re
]
"r"
(
a_Re
),
[
b_Im
]
"r"
(
b_Im
),
[
a_Im
]
"r"
(
a_Im
),
[
b_Re
]
"r"
(
b_Re
)
:
"lo"
);
*
c_Im
=
result
<<
1
;
*
c_Im
=
result
<<
1
;
}
}
#endif
#endif
...
...
libFDK/include/mips/fixmul_mips.h
View file @
50b1de17
...
@@ -100,14 +100,8 @@ amm-info@iis.fraunhofer.de
...
@@ -100,14 +100,8 @@ amm-info@iis.fraunhofer.de
inline
INT
fixmuldiv2_DD
(
const
INT
a
,
const
INT
b
)
inline
INT
fixmuldiv2_DD
(
const
INT
a
,
const
INT
b
)
{
{
INT
result
;
asm
(
"mult %1,%2;
\n
"
return
((
long
long
)
a
*
b
)
>>
32
;
:
"=hi"
(
result
)
:
"d"
(
a
),
"r"
(
b
)
:
"lo"
);
return
result
;
}
}
#endif
/* (__GNUC__) && defined(__mips__) */
#endif
/* (__GNUC__) && defined(__mips__) */
...
...
libSYS/include/genericStds.h
View file @
50b1de17
...
@@ -96,8 +96,6 @@ amm-info@iis.fraunhofer.de
...
@@ -96,8 +96,6 @@ amm-info@iis.fraunhofer.de
#include "machine_type.h"
#include "machine_type.h"
/* Work around for broken android toolchain: sys/types.h:137: error: 'uint64_t' does not name a type */
#define _SYS_TYPES_H_
/* Always increase verbosity of memory allocation in case of a debug built. DEBUG is defined globally in that case. */
/* Always increase verbosity of memory allocation in case of a debug built. DEBUG is defined globally in that case. */
...
...
libSYS/src/cmdl_parser.cpp
View file @
50b1de17
...
@@ -92,9 +92,6 @@ amm-info@iis.fraunhofer.de
...
@@ -92,9 +92,6 @@ amm-info@iis.fraunhofer.de
#define _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
/* Work around for broken android toolchain: sys/types.h:137: error: 'uint64_t' does not name a type */
#define _SYS_TYPES_H_
#include <stdarg.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
...
...
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