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
d7fca408
Commit
d7fca408
authored
Mar 03, 2015
by
Martin Storsjo
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'aosp/master'
parents
97b382cd
2b6bf8dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
9 deletions
+6
-9
Android.mk
Android.mk
+2
-5
libMpegTPDec/src/tpdec_asc.cpp
libMpegTPDec/src/tpdec_asc.cpp
+3
-3
libSYS/src/genericStds.cpp
libSYS/src/genericStds.cpp
+1
-1
No files found.
Android.mk
View file @
d7fca408
...
...
@@ -39,7 +39,6 @@ LOCAL_SRC_FILES := \
$
(
sbrdec_sources:%
=
libSBRdec/src/%
)
\
$
(
sbrenc_sources:%
=
libSBRenc/src/%
)
LOCAL_CFLAGS
:=
-DANDROID
LOCAL_CFLAGS
+=
-Wno-sequence-point
-Wno-extra
LOCAL_C_INCLUDES
:=
\
...
...
@@ -53,10 +52,8 @@ LOCAL_C_INCLUDES := \
$(LOCAL_PATH)
/libSBRdec/include
\
$(LOCAL_PATH)
/libSBRenc/include
# In tpdec_asc.cpp: address of array 'pPce->FrontElementIsCpe'
# will always evaluate to 'true'.
LOCAL_CLANG_CPPFLAGS
+=
\
-Wno-pointer-bool-conversion
LOCAL_CPPFLAGS
+=
-std
=
c++98
LOCAL_MODULE
:=
libFraunhoferAAC
...
...
libMpegTPDec/src/tpdec_asc.cpp
View file @
d7fca408
...
...
@@ -449,13 +449,13 @@ void CProgramConfig_GetDefault( CProgramConfig *pPce,
int
el
,
elTagSce
=
0
,
elTagCpe
=
0
;
for
(
el
=
0
;
el
<
pPce
->
NumFrontChannelElements
;
el
+=
1
)
{
pPce
->
FrontElementTagSelect
[
el
]
=
(
pPce
->
FrontElementIsCpe
)
?
elTagCpe
++
:
elTagSce
++
;
pPce
->
FrontElementTagSelect
[
el
]
=
(
pPce
->
FrontElementIsCpe
[
el
]
)
?
elTagCpe
++
:
elTagSce
++
;
}
for
(
el
=
0
;
el
<
pPce
->
NumSideChannelElements
;
el
+=
1
)
{
pPce
->
SideElementTagSelect
[
el
]
=
(
pPce
->
SideElementIsCpe
)
?
elTagCpe
++
:
elTagSce
++
;
pPce
->
SideElementTagSelect
[
el
]
=
(
pPce
->
SideElementIsCpe
[
el
]
)
?
elTagCpe
++
:
elTagSce
++
;
}
for
(
el
=
0
;
el
<
pPce
->
NumBackChannelElements
;
el
+=
1
)
{
pPce
->
BackElementTagSelect
[
el
]
=
(
pPce
->
BackElementIsCpe
)
?
elTagCpe
++
:
elTagSce
++
;
pPce
->
BackElementTagSelect
[
el
]
=
(
pPce
->
BackElementIsCpe
[
el
]
)
?
elTagCpe
++
:
elTagSce
++
;
}
elTagSce
=
0
;
for
(
el
=
0
;
el
<
pPce
->
NumLfeChannelElements
;
el
+=
1
)
{
...
...
libSYS/src/genericStds.cpp
View file @
d7fca408
...
...
@@ -116,7 +116,7 @@ amm-info@iis.fraunhofer.de
/* Include OS/System specific implementations. */
#if defined(__linux__)
/* cppp replaced: elif */
#if defined(__linux__)
&& !defined(__ANDROID__)
/* cppp replaced: elif */
#include "linux/genericStds_linux.cpp"
#endif
...
...
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