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
9f42dfb7
Commit
9f42dfb7
authored
Sep 15, 2015
by
Marco Nelissen
Committed by
Android Git Automerger
Sep 15, 2015
Browse files
Options
Browse Files
Download
Plain Diff
am
b3c5a4bb
: Fix crash on invalid channel config
* commit '
b3c5a4bb
': Fix crash on invalid channel config
parents
267940f5
b3c5a4bb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
libPCMutils/src/pcmutils_lib.cpp
libPCMutils/src/pcmutils_lib.cpp
+5
-2
No files found.
libPCMutils/src/pcmutils_lib.cpp
View file @
9f42dfb7
...
...
@@ -88,7 +88,7 @@ amm-info@iis.fraunhofer.de
expansion in the PCM time domain.
*******************************************************************************/
#include <log/log.h>
#include "pcmutils_lib.h"
#include "genericStds.h"
...
...
@@ -2073,7 +2073,10 @@ PCMDMX_ERROR pcmDmx_ApplyFrame (
map
[
ch
++
]
=
inCh
;
}
}
FDK_ASSERT
(
ch
==
numInChannels
);
if
(
ch
!=
numInChannels
)
{
ALOGE
(
"b/23876444"
);
return
PCMDMX_INVALID_ARGUMENT
;
}
/* Remove unused cols from factor matrix */
for
(
inCh
=
0
;
inCh
<
numInChannels
;
inCh
+=
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