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
963f6855
Commit
963f6855
authored
Nov 22, 2011
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aacdec: Fix PS in ADTS.
Fixes File1.aac and Bug 80.
parent
105ab61c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
aacdec.c
libavcodec/aacdec.c
+2
-1
No files found.
libavcodec/aacdec.c
View file @
963f6855
...
...
@@ -2085,7 +2085,8 @@ static int parse_adts_frame_header(AACContext *ac, GetBitContext *gb)
ac
->
m4ac
.
chan_config
=
hdr_info
.
chan_config
;
if
(
set_default_channel_config
(
ac
->
avctx
,
new_che_pos
,
hdr_info
.
chan_config
))
return
-
7
;
if
(
output_configure
(
ac
,
ac
->
che_pos
,
new_che_pos
,
hdr_info
.
chan_config
,
OC_TRIAL_FRAME
))
if
(
output_configure
(
ac
,
ac
->
che_pos
,
new_che_pos
,
hdr_info
.
chan_config
,
FFMAX
(
ac
->
output_configured
,
OC_TRIAL_FRAME
)))
return
-
7
;
}
else
if
(
ac
->
output_configured
!=
OC_LOCKED
)
{
ac
->
m4ac
.
chan_config
=
0
;
...
...
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