mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
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:
parent
d5082a2ce7
commit
da4d0fa86b
@ -356,6 +356,12 @@ static int nvenc_check_capabilities(AVCodecContext *avctx)
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user