- Timestamp:
- Oct 22, 2021 12:54:42 PM (3 years ago)
- Location:
- trunk/src/VBox/ValidationKit/utils/audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r91946 r92002 728 728 case VKAT_TEST_OPT_PCM_SIGNED: return "PCM samples to use (signed = true, unsigned = false)\n" 729 729 " Default: true"; 730 case VKAT_TEST_OPT_PROBE_BACKENDS: return "Whether to probe all (available) backends until a working one is found\n" 731 " Default: false"; 730 case VKAT_TEST_OPT_PROBE_BACKENDS: return "Probes all (available) backends until a working one is found\n" 732 731 case VKAT_TEST_OPT_TAG: return "Test set tag to use"; 733 732 case VKAT_TEST_OPT_TEMPDIR: return "Temporary directory to use"; -
trunk/src/VBox/ValidationKit/utils/audio/vkatCmdGeneric.cpp
r91842 r92002 67 67 { 68 68 case 'b': return "The audio backend to use."; 69 case VKAT_ENUM_OPT_PROBE_BACKENDS: return "Whether to probe all (available) backends until a working one is found\n" 70 " Default: false"; 69 case VKAT_ENUM_OPT_PROBE_BACKENDS: return "Probes all (available) backends until a working one is found\n" 71 70 default: return NULL; 72 71 } … … 102 101 103 102 case VKAT_ENUM_OPT_PROBE_BACKENDS: 104 fProbeBackends = ValueUnion.f;103 fProbeBackends = true; 105 104 break; 106 105
Note:
See TracChangeset
for help on using the changeset viewer.