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:57:16 +0200 |
commit | 435a730e2190c9b005117eaad57f7559cd82581c (patch) | |
tree | d2614943f76e2a987b2532b444166b7a845e1e20 /libavcodec | |
parent | 72cf47b241c7972cce313e1f474bdb8f3684fa15 (diff) | |
download | ffmpeg-435a730e2190c9b005117eaad57f7559cd82581c.tar.gz |
avcodec/aacdec: fix more avpriv_report_missing_feature() arguments
Found-by: durandal_1707
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-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 c76e9f4782..eb6ee5e331 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -838,14 +838,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; } @@ -872,7 +872,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; } |