diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-23 10:44:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-23 10:45:50 +0200 |
commit | 72cf47b241c7972cce313e1f474bdb8f3684fa15 (patch) | |
tree | f79bfa3004956a98c68d0c4a50376661a075feae | |
parent | eb4205cc89576d15cde6107e0f5dc0fabed29c40 (diff) | |
download | ffmpeg-72cf47b241c7972cce313e1f474bdb8f3684fa15.tar.gz |
avcodec/aacdec: fix avpriv_report_missing_feature() arguments
Found-by: durandal_1707
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/aacdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 541fa84a43..c76e9f4782 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -794,7 +794,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; @@ -810,7 +810,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; } @@ -943,7 +943,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); |