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
a3710f1e
Commit
a3710f1e
authored
May 21, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aacdec: print debug note when unexpected SCE/CPE is encountered
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
3230590c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
aacdec.c
libavcodec/aacdec.c
+4
-0
No files found.
libavcodec/aacdec.c
View file @
a3710f1e
...
...
@@ -477,6 +477,8 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id)
int
layout_map_tags
;
push_output_configuration
(
ac
);
av_log
(
ac
->
avctx
,
AV_LOG_DEBUG
,
"mono with CPE
\n
"
);
if
(
set_default_channel_config
(
ac
->
avctx
,
layout_map
,
&
layout_map_tags
,
2
)
<
0
)
return
NULL
;
...
...
@@ -492,6 +494,8 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id)
int
layout_map_tags
;
push_output_configuration
(
ac
);
av_log
(
ac
->
avctx
,
AV_LOG_DEBUG
,
"stereo with SCE
\n
"
);
if
(
set_default_channel_config
(
ac
->
avctx
,
layout_map
,
&
layout_map_tags
,
1
)
<
0
)
return
NULL
;
...
...
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