mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-24 15:30:04 -05:00
obs-ffmpeg: Add NVIDIA Tesla NVENC support
This commit is contained in:
@@ -200,8 +200,10 @@ static bool nvenc_device_available(void)
|
||||
while ((dirent = os_readdir(dir)) != NULL) {
|
||||
int id;
|
||||
|
||||
if (get_id_from_sys(dirent->d_name, "class") !=
|
||||
0x030000) { // 0x030000 = VGA compatible controller
|
||||
if (get_id_from_sys(dirent->d_name, "class") != 0x030000 &&
|
||||
get_id_from_sys(dirent->d_name, "class") !=
|
||||
0x030200) { // 0x030000 = VGA compatible controller
|
||||
// 0x030200 = 3D controller
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user