diff --git a/libavcodec/libopusenc.c b/libavcodec/libopusenc.c index d1987989299f56bb85b2e67696b4bff743d233f6..a4aa37cdd43811851ec09c7bcf6f6c4884fcd382 100644 --- a/libavcodec/libopusenc.c +++ b/libavcodec/libopusenc.c @@ -107,6 +107,13 @@ static int libopus_configure_encoder(AVCodecContext *avctx, OpusMSEncoder *enc, { int ret; + if (avctx->global_quality) { + av_log(avctx, AV_LOG_ERROR, + "Quality-based encoding not supported, " + "please specify a bitrate and VBR setting.\n"); + return AVERROR(EINVAL); + } + ret = opus_multistream_encoder_ctl(enc, OPUS_SET_BITRATE(avctx->bit_rate)); if (ret != OPUS_OK) { av_log(avctx, AV_LOG_ERROR,