avcodec/nvenc: add test for Temporal AQ support
Adds a check to see if the hardware supports temporal aq. Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
This commit is contained in:
committed by
Timo Rothenpieler
parent
d5082a2ce7
commit
da4d0fa86b
@@ -356,6 +356,12 @@ static int nvenc_check_capabilities(AVCodecContext *avctx)
|
|||||||
return AVERROR(ENOSYS);
|
return AVERROR(ENOSYS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_TEMPORAL_AQ);
|
||||||
|
if (ctx->temporal_aq > 0 && ret <= 0) {
|
||||||
|
av_log(avctx, AV_LOG_VERBOSE, "Temporal AQ not supported\n");
|
||||||
|
return AVERROR(ENOSYS);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user