tconfig: set proper default value for fps_den

This commit is contained in:
Koichiro Iwao 2024-08-24 00:07:11 +09:00
parent 854d060917
commit 16ef3dc3a8
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ tconfig_load_gfx_x264_ct(toml_table_t *tfile, const int connection_type,
"x264 param fps_den is not set for connection type [%s], "
"adopting the default value [0]",
rdpbcgr_connection_type_names[connection_type]);
param[connection_type].fps_num = X264_DEFAULT_FPS_DEN;
param[connection_type].fps_den = X264_DEFAULT_FPS_DEN;
}
return 0;