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
adea4512
Commit
adea4512
authored
Oct 25, 2013
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aacdec: Fix calls to avpriv_report_missing_feature().
It does not take log level as an argument.
parent
4d6ee072
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
aacdec.c
libavcodec/aacdec.c
+6
-6
No files found.
libavcodec/aacdec.c
View file @
adea4512
...
...
@@ -755,7 +755,7 @@ static int decode_ga_specific_config(AACContext *ac, AVCodecContext *avctx,
case
AOT_ER_AAC_LD
:
res_flags
=
get_bits
(
gb
,
3
);
if
(
res_flags
)
{
avpriv_report_missing_feature
(
avctx
,
AV_LOG_ERROR
,
avpriv_report_missing_feature
(
avctx
,
"AAC data resilience (flags %x)"
,
res_flags
);
return
AVERROR_PATCHWELCOME
;
...
...
@@ -771,7 +771,7 @@ static int decode_ga_specific_config(AACContext *ac, AVCodecContext *avctx,
case
AOT_ER_AAC_LD
:
ep_config
=
get_bits
(
gb
,
2
);
if
(
ep_config
)
{
avpriv_report_missing_feature
(
avctx
,
AV_LOG_ERROR
,
avpriv_report_missing_feature
(
avctx
,
"epConfig %d"
,
ep_config
);
return
AVERROR_PATCHWELCOME
;
}
...
...
@@ -799,14 +799,14 @@ static int decode_eld_specific_config(AACContext *ac, AVCodecContext *avctx,
res_flags
=
get_bits
(
gb
,
3
);
if
(
res_flags
)
{
avpriv_report_missing_feature
(
avctx
,
AV_LOG_ERROR
,
avpriv_report_missing_feature
(
avctx
,
"AAC data resilience (flags %x)"
,
res_flags
);
return
AVERROR_PATCHWELCOME
;
}
if
(
get_bits1
(
gb
))
{
// ldSbrPresentFlag
avpriv_report_missing_feature
(
avctx
,
AV_LOG_ERROR
,
avpriv_report_missing_feature
(
avctx
,
"Low Delay SBR"
);
return
AVERROR_PATCHWELCOME
;
}
...
...
@@ -833,7 +833,7 @@ static int decode_eld_specific_config(AACContext *ac, AVCodecContext *avctx,
ep_config
=
get_bits
(
gb
,
2
);
if
(
ep_config
)
{
avpriv_report_missing_feature
(
avctx
,
AV_LOG_ERROR
,
avpriv_report_missing_feature
(
avctx
,
"epConfig %d"
,
ep_config
);
return
AVERROR_PATCHWELCOME
;
}
...
...
@@ -904,7 +904,7 @@ static int decode_audio_specific_config(AACContext *ac,
return
ret
;
break
;
default:
avpriv_report_missing_feature
(
avctx
,
AV_LOG_ERROR
,
avpriv_report_missing_feature
(
avctx
,
"Audio object type %s%d"
,
m4ac
->
sbr
==
1
?
"SBR+"
:
""
,
m4ac
->
object_type
);
...
...
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