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
66091e46
Commit
66091e46
authored
Dec 01, 2014
by
Chih-Hung Hsieh
Committed by
Gerrit Code Review
Dec 01, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Fix checks for {Front,Side,Back}ElementIsCpe"
parents
84851b23
bb1e78a1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
Android.mk
Android.mk
+0
-4
libMpegTPDec/src/tpdec_asc.cpp
libMpegTPDec/src/tpdec_asc.cpp
+3
-3
No files found.
Android.mk
View file @
66091e46
...
...
@@ -52,10 +52,6 @@ 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
...
...
libMpegTPDec/src/tpdec_asc.cpp
View file @
66091e46
...
...
@@ -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
)
{
...
...
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