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

vlc-video: Support subtitle track up to 1000

This commit is contained in:
练亮斌 2022-07-02 11:42:42 +08:00 committed by Ryan Foster
parent be629b93ce
commit b5b3563479

View File

@ -1137,8 +1137,8 @@ static obs_properties_t *vlcs_properties(void *data)
obs_properties_add_int(ppts, S_TRACK, T_TRACK, 1, 10, 1);
obs_properties_add_bool(ppts, S_SUBTITLE_ENABLE, T_SUBTITLE_ENABLE);
obs_properties_add_int(ppts, S_SUBTITLE_TRACK, T_SUBTITLE_TRACK, 1, 10,
1);
obs_properties_add_int(ppts, S_SUBTITLE_TRACK, T_SUBTITLE_TRACK, 1,
1000, 1);
return ppts;
}