mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
libfdk-aac: Warn the user that the VBR modes are unsupported
These modes were not originally exposed by the library at all. In practice, only a few of them work for each sample rate/profile combination, and they don't work at all for the more uncommon sample rates. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
b62d4c16c9
commit
a10190dcd8
@ -180,6 +180,9 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
|
||||
"VBR quality %d out of range, should be 1-5\n", mode);
|
||||
mode = av_clip(mode, 1, 5);
|
||||
}
|
||||
av_log(avctx, AV_LOG_WARNING,
|
||||
"Note, the VBR setting is unsupported and only works with "
|
||||
"some parameter combinations\n");
|
||||
if ((err = aacEncoder_SetParam(s->handle, AACENC_BITRATEMODE,
|
||||
mode)) != AACENC_OK) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Unable to set the VBR bitrate mode %d: %s\n",
|
||||
|
Loading…
Reference in New Issue
Block a user