configure: use non-deprecated nvenc GUID for conftest

This commit is contained in:
Timo Rothenpieler 2023-06-01 23:24:43 +02:00
parent 3cfd85ec20
commit 03823ac0c6
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -7079,7 +7079,7 @@ enabled nvenc &&
test_cc -I$source_path <<EOF || disable nvenc
#include <ffnvcodec/nvEncodeAPI.h>
NV_ENCODE_API_FUNCTION_LIST flist;
void f(void) { struct { const GUID guid; } s[] = { { NV_ENC_PRESET_HQ_GUID } }; }
void f(void) { struct { const GUID guid; } s[] = { { NV_ENC_CODEC_H264_GUID } }; }
int main(void) { return 0; }
EOF