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
1f20fa2d
Commit
1f20fa2d
authored
Oct 13, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/aacdec: print element types when debug startcode is set
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b9918a76
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
aacdec.c
libavcodec/aacdec.c
+3
-0
No files found.
libavcodec/aacdec.c
View file @
1f20fa2d
...
...
@@ -2925,6 +2925,9 @@ static int aac_decode_frame_int(AVCodecContext *avctx, void *data,
while
((
elem_type
=
get_bits
(
gb
,
3
))
!=
TYPE_END
)
{
elem_id
=
get_bits
(
gb
,
4
);
if
(
avctx
->
debug
&
FF_DEBUG_STARTCODE
)
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Elem type:%x id:%x
\n
"
,
elem_type
,
elem_id
);
if
(
elem_type
<
TYPE_DSE
)
{
if
(
!
(
che
=
get_che
(
ac
,
elem_type
,
elem_id
)))
{
av_log
(
ac
->
avctx
,
AV_LOG_ERROR
,
"channel element %d.%d is not allocated
\n
"
,
...
...
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