summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfred E. Heggestad <alfred.heggestad@gmail.com>2018-04-06 18:50:16 +0200
committerAlfred E. Heggestad <alfred.heggestad@gmail.com>2018-04-06 18:50:16 +0200
commita72f343dd192b02f062b78cc1cb34e0830fb5c5c (patch)
treea59cf3c5e4842bdfa042049b36df725e043c3ea2
parent9565d03c87f9c99bddcba04b44f70a84c9c935d9 (diff)
config: refresh template
-rw-r--r--src/config.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c
index 14bf651..de6f80a 100644
--- a/src/config.c
+++ b/src/config.c
@@ -389,7 +389,7 @@ int config_print(struct re_printf *pf, const struct config *cfg)
"\n"
"# Call\n"
"call_local_timeout\t%u\n"
- "call_max_calls\t%u\n"
+ "call_max_calls\t\t%u\n"
"\n"
"# Audio\n"
"audio_path\t\t%s\n"
@@ -411,6 +411,8 @@ int config_print(struct re_printf *pf, const struct config *cfg)
"video_size\t\t\"%ux%u\"\n"
"video_bitrate\t\t%u\n"
"video_fps\t\t%.2f\n"
+ "video_fullscreen\t%s\n"
+ "videnc_format\t\t%s\n"
"\n"
#endif
"# AVT\n"
@@ -453,6 +455,8 @@ int config_print(struct re_printf *pf, const struct config *cfg)
cfg->video.disp_mod, cfg->video.disp_dev,
cfg->video.width, cfg->video.height,
cfg->video.bitrate, cfg->video.fps,
+ cfg->video.fullscreen ? "yes" : "no",
+ vidfmt_name(cfg->video.enc_fmt),
#endif
cfg->avt.rtp_tos,
@@ -557,7 +561,7 @@ static int core_config_template(struct re_printf *pf, const struct config *cfg)
"\n"
"# Call\n"
"call_local_timeout\t%u\n"
- "call_max_calls\t%u\n"
+ "call_max_calls\t\t%u\n"
"\n"
"# Audio\n"
#if defined (SHARE_PATH)