0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

obs-ffmpeg: Fall back to FFmpeg nvenc if recale active

This commit is contained in:
jp9000 2020-02-18 21:00:30 -08:00
parent de363d3e09
commit 55d80e82e1

View File

@ -581,6 +581,9 @@ static void *nvenc_create(obs_data_t *settings, obs_encoder_t *encoder)
goto fail;
}
if (obs_encoder_scaling_enabled(encoder)) {
goto fail;
}
if (!obs_nv12_tex_active()) {
goto fail;
}