Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
99060576
Commit
99060576
authored
Jun 08, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/aacdec: Do not return a uninitialized value
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
153d23ee
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
aacdec.c
libavcodec/aacdec.c
+3
-1
No files found.
libavcodec/aacdec.c
View file @
99060576
...
@@ -2987,8 +2987,10 @@ static int aac_decode_frame_int(AVCodecContext *avctx, void *data,
...
@@ -2987,8 +2987,10 @@ static int aac_decode_frame_int(AVCodecContext *avctx, void *data,
if
(
avctx
->
debug
&
FF_DEBUG_STARTCODE
)
if
(
avctx
->
debug
&
FF_DEBUG_STARTCODE
)
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Elem type:%x id:%x
\n
"
,
elem_type
,
elem_id
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Elem type:%x id:%x
\n
"
,
elem_type
,
elem_id
);
if
(
!
avctx
->
channels
&&
elem_type
!=
TYPE_PCE
)
if
(
!
avctx
->
channels
&&
elem_type
!=
TYPE_PCE
)
{
err
=
AVERROR_INVALIDDATA
;
goto
fail
;
goto
fail
;
}
if
(
elem_type
<
TYPE_DSE
)
{
if
(
elem_type
<
TYPE_DSE
)
{
if
(
!
(
che
=
get_che
(
ac
,
elem_type
,
elem_id
)))
{
if
(
!
(
che
=
get_che
(
ac
,
elem_type
,
elem_id
)))
{
...
...
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