diff --git a/src/control_socket.cpp b/src/control_socket.cpp index 710c6b7b0..600afcf89 100644 --- a/src/control_socket.cpp +++ b/src/control_socket.cpp @@ -985,25 +985,25 @@ bool control_stats_enabled(struct control_state *s) } static void print_control_help() { - printf("Control internal commands:\n" - "\texit\n" - "\tpause\n" - "\tplay\n" - "\treciever {pause|play}\n" - "\treset-ssrc\n" - "\t{receiver|sender}-port \n" - "\tfec {audio|video} \n" - "\tcompress \n" - "\tcompress param \n" - "\tvolume {up|down}\n" - "\tav-delay \n" - "\tmute\n" - "\t\tthe three items above apply to receiver\n" - "\tpostprocess |flush\n" - "\tdump-tree\n"); - printf("\nOther commands can be issued directly to individual " - "modules (see \"dump-tree\"), eg.:\n" - "\tcapture.filter mirror\n" - "\nSometimes those modules support help (eg. \"capture.filter help)\"\n\n"); + color_printf("Control internal commands:\n" + TBOLD("\texit") "\n" + TBOLD("\tpause") "\n" + TBOLD("\tplay") "\n" + TBOLD("\treciever {pause|play}") "\n" + TBOLD("\treset-ssrc") "\n" + TBOLD("\t{receiver|sender}-port ") "\n" + TBOLD("\tfec {audio|video} ") "\n" + TBOLD("\tcompress ") "\n" + TBOLD("\tcompress param ") "\n" + TBOLD("\tvolume {up|down}") u8"¹\n" + TBOLD("\tav-delay ") u8"¹\n" + TBOLD("\tmute") u8"¹ - toggles mute\n" + TBOLD("\tpostprocess | flush") "\n" + TBOLD("\tdump-tree")"\n"); + color_printf("\nOther commands can be issued directly to individual " + "modules (see \"" TBOLD("dump-tree") "\"), eg.:\n" + "\t" TBOLD("capture.filter mirror") "\n" + "\nSometimes those modules support help (eg. \"" TBOLD("capture.filter help") "\")\n\n"); + color_printf(TBOLD(u8"¹") " audio commands applying to receiver\n\n"); }