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

obs-ffmpeg: Mark FFmpeg NVENC as internal

Because we implemented the fallback for rescaling, there's no need to
show FFmpeg NVENC anymore.
This commit is contained in:
jp9000 2020-02-18 21:36:46 -08:00
parent 4f6b4df17e
commit 11eafbda35

View File

@ -570,5 +570,5 @@ struct obs_encoder_info nvenc_encoder_info = {
.get_extra_data = nvenc_extra_data, .get_extra_data = nvenc_extra_data,
.get_sei_data = nvenc_sei_data, .get_sei_data = nvenc_sei_data,
.get_video_info = nvenc_video_info, .get_video_info = nvenc_video_info,
.caps = OBS_ENCODER_CAP_DYN_BITRATE, .caps = OBS_ENCODER_CAP_DYN_BITRATE | OBS_ENCODER_CAP_INTERNAL,
}; };