1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

aacdec: Use avpriv_report_missing_feature() instead of custom logging.

This commit is contained in:
Alex Converse 2013-10-22 03:41:04 -07:00
parent b1fcdc08ce
commit f457edb697

View File

@ -754,9 +754,9 @@ static int decode_ga_specific_config(AACContext *ac, AVCodecContext *avctx,
case AOT_ER_AAC_LD: case AOT_ER_AAC_LD:
res_flags = get_bits(gb, 3); res_flags = get_bits(gb, 3);
if (res_flags) { if (res_flags) {
av_log(avctx, AV_LOG_ERROR, avpriv_report_missing_feature(avctx, AV_LOG_ERROR,
"AAC data resilience not supported (flags %x)\n", "AAC data resilience (flags %x)",
res_flags); res_flags);
return AVERROR_PATCHWELCOME; return AVERROR_PATCHWELCOME;
} }
break; break;
@ -770,9 +770,8 @@ static int decode_ga_specific_config(AACContext *ac, AVCodecContext *avctx,
case AOT_ER_AAC_LD: case AOT_ER_AAC_LD:
ep_config = get_bits(gb, 2); ep_config = get_bits(gb, 2);
if (ep_config) { if (ep_config) {
av_log(avctx, AV_LOG_ERROR, avpriv_report_missing_feature(avctx, AV_LOG_ERROR,
"epConfig %d is not supported.\n", "epConfig %d", ep_config);
ep_config);
return AVERROR_PATCHWELCOME; return AVERROR_PATCHWELCOME;
} }
} }
@ -838,10 +837,10 @@ static int decode_audio_specific_config(AACContext *ac,
return ret; return ret;
break; break;
default: default:
av_log(avctx, AV_LOG_ERROR, avpriv_report_missing_feature(avctx, AV_LOG_ERROR,
"Audio object type %s%d is not supported.\n", "Audio object type %s%d",
m4ac->sbr == 1 ? "SBR+" : "", m4ac->sbr == 1 ? "SBR+" : "",
m4ac->object_type); m4ac->object_type);
return AVERROR(ENOSYS); return AVERROR(ENOSYS);
} }