diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index 0ffa4a23cc99284426e55b806800031cf4803410..af77379d1cb72ff3083376c6b2e5e47c770ceff9 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -789,7 +789,8 @@ static av_cold int aac_encode_init(AVCodecContext *avctx) } else if (avctx->profile == FF_PROFILE_AAC_LOW && s->options.pred) { s->profile = 0; /* Main */ WARN_IF(1, "Prediction requested, changing profile to AAC-Main\n"); - } else if (avctx->profile == FF_PROFILE_AAC_LOW) { + } else if (avctx->profile == FF_PROFILE_AAC_LOW || + avctx->profile == FF_PROFILE_UNKNOWN) { s->profile = 1; /* Low */ } else { ERROR_IF(1, "Unsupported profile %d\n", avctx->profile);