Changeset 92463 in vbox
- Timestamp:
- Nov 16, 2021 3:55:37 PM (3 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
-
Devices/Audio/AudioTestServiceTcp.cpp (modified) (1 diff)
-
ValidationKit/utils/audio/vkat.cpp (modified) (2 diffs)
-
ValidationKit/utils/audio/vkatCmdGeneric.cpp (modified) (1 diff)
-
ValidationKit/utils/audio/vkatInternal.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTestServiceTcp.cpp
r92073 r92463 900 900 RTStrmPrintf(pStream, 901 901 " --tcp-conn-mode <0=both|1=client|2=server>\n" 902 " Selects the connection mode.\n"903 " Default: 0 (both)\n"902 " Selects the connection mode\n" 903 " Default: 0 (both)\n" 904 904 " --tcp-bind-addr[ess] <address>\n" 905 " The address(es) to listen to TCP connection on.Empty string\n"906 " means any address, this is the default.\n"905 " The address(es) to listen to TCP connection on. Empty string\n" 906 " means any address, this is the default\n" 907 907 " --tcp-bind-port <port>\n" 908 " The port to listen to TCP connections on.\n"909 " Default: %u\n"908 " The port to listen to TCP connections on\n" 909 " Default: %u\n" 910 910 " --tcp-connect-addr[ess] <address>\n" 911 " The address of the server to try connect to in client mode.\n"912 " Default: " ATS_TCP_DEF_CONNECT_GUEST_STR "\n"911 " The address of the server to try connect to in client mode\n" 912 " Default: " ATS_TCP_DEF_CONNECT_GUEST_STR "\n" 913 913 " --tcp-connect-port <port>\n" 914 " The port on the server to connect to in client mode.\n"915 " Default: %u\n"914 " The port on the server to connect to in client mode\n" 915 " Default: %u\n" 916 916 , ATS_TCP_DEF_BIND_PORT_GUEST, ATS_TCP_DEF_CONNECT_PORT_GUEST); 917 917 } -
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r92396 r92463 729 729 case VKAT_TEST_OPT_PCM_SIGNED: return "PCM samples to use (signed = true, unsigned = false)\n" 730 730 " Default: true"; 731 case VKAT_TEST_OPT_PROBE_BACKENDS: return "Probes all (available) backends until a working one is found \n";731 case VKAT_TEST_OPT_PROBE_BACKENDS: return "Probes all (available) backends until a working one is found"; 732 732 case VKAT_TEST_OPT_TAG: return "Test set tag to use"; 733 733 case VKAT_TEST_OPT_TEMPDIR: return "Temporary directory to use"; … … 1298 1298 "Global Options:\n" 1299 1299 " --debug-audio\n" 1300 " Enables (DrvAudio) debugging .\n"1300 " Enables (DrvAudio) debugging\n" 1301 1301 " --debug-audio-path=<path>\n" 1302 " Tells DrvAudio where to put its debug output (wav-files) .\n"1302 " Tells DrvAudio where to put its debug output (wav-files)\n" 1303 1303 " -q, --quiet\n" 1304 " Sets verbosity to zero .\n"1304 " Sets verbosity to zero\n" 1305 1305 " -v, --verbose\n" 1306 " Increase verbosity .\n"1306 " Increase verbosity\n" 1307 1307 " -V, --version\n" 1308 " Displays version .\n"1308 " Displays version\n" 1309 1309 " -h, -?, --help\n" 1310 " Displays help .\n"1310 " Displays help\n" 1311 1311 ); 1312 1312 -
trunk/src/VBox/ValidationKit/utils/audio/vkatCmdGeneric.cpp
r92003 r92463 66 66 switch (pOpt->iShort) 67 67 { 68 case 'b': return "The audio backend to use .";69 case VKAT_ENUM_OPT_PROBE_BACKENDS: return "Probes all (available) backends until a working one is found \n";68 case 'b': return "The audio backend to use"; 69 case VKAT_ENUM_OPT_PROBE_BACKENDS: return "Probes all (available) backends until a working one is found"; 70 70 default: return NULL; 71 71 } -
trunk/src/VBox/ValidationKit/utils/audio/vkatInternal.h
r92396 r92463 515 515 \ 516 516 case 'h': \ 517 audioTestShowLogo(g_pStdOut); \518 517 return audioTestUsage(g_pStdOut); \ 519 518 \
Note:
See TracChangeset
for help on using the changeset viewer.

