aacenc: Error when an unsupported profile is requested

Originally committed as revision 22784 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Converse 2010-04-02 16:26:10 +00:00
parent 7b374c9ff2
commit 523429220b

View File

@ -170,6 +170,10 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
av_log(avctx, AV_LOG_ERROR, "Unsupported number of channels: %d\n", avctx->channels);
return -1;
}
if (avctx->profile != FF_PROFILE_UNKNOWN && avctx->profile != FF_PROFILE_AAC_LOW) {
av_log(avctx, AV_LOG_ERROR, "Unsupported profile %d\n", avctx->profile);
return -1;
}
s->samplerate_index = i;
dsputil_init(&s->dsp, avctx);