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
2daae445
Commit
2daae445
authored
Nov 07, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/aacdec: print extension type when startcode debugging is on
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b385c4c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
aacdec.c
libavcodec/aacdec.c
+6
-1
No files found.
libavcodec/aacdec.c
View file @
2daae445
...
...
@@ -2291,7 +2291,12 @@ static int decode_extension_payload(AACContext *ac, GetBitContext *gb, int cnt,
{
int
crc_flag
=
0
;
int
res
=
cnt
;
switch
(
get_bits
(
gb
,
4
))
{
// extension type
int
type
=
get_bits
(
gb
,
4
);
if
(
ac
->
avctx
->
debug
&
FF_DEBUG_STARTCODE
)
av_log
(
ac
->
avctx
,
AV_LOG_DEBUG
,
"extension type: %d len:%d
\n
"
,
type
,
cnt
);
switch
(
type
)
{
// extension type
case
EXT_SBR_DATA_CRC
:
crc_flag
++
;
case
EXT_SBR_DATA
:
...
...
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