lavc/qsvenc: add error messeage if ICQ unsupported.
Signed-off-by: Zhong Li <zhong.li@intel.com> Signed-off-by: Maxym Dmytrychenko <maxim.d33@gmail.com>
This commit is contained in:
parent
bddb2ce179
commit
7c65a76b16
@ -295,6 +295,12 @@ static int select_rc_mode(AVCodecContext *avctx, QSVEncContext *q)
|
|||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!want_qscale && avctx->global_quality > 0 && !QSV_HAVE_ICQ){
|
||||||
|
av_log(avctx, AV_LOG_ERROR,
|
||||||
|
"ICQ ratecontrol mode requested, but is not supported by this SDK version\n");
|
||||||
|
return AVERROR(ENOSYS);
|
||||||
|
}
|
||||||
|
|
||||||
if (want_qscale) {
|
if (want_qscale) {
|
||||||
rc_mode = MFX_RATECONTROL_CQP;
|
rc_mode = MFX_RATECONTROL_CQP;
|
||||||
rc_desc = "constant quantization parameter (CQP)";
|
rc_desc = "constant quantization parameter (CQP)";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user