- Timestamp:
- Jan 12, 2017, 5:38:35 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler, yinfft+
- Children:
- eda2fd0
- Parents:
- ed6b302
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/parse_args.h
red6b302 r71bc8b0 118 118 #ifdef PROG_HAS_JACK 119 119 " -j --jack use Jack\n" 120 " -n --miditap-note MIDI note\n" 121 " -V --miditap-velo MIDI velocity\n" 120 122 #endif /* PROG_HAS_JACK */ 121 123 " -v --verbose be verbose\n" … … 136 138 "i:r:B:H:" 137 139 #ifdef PROG_HAS_JACK 138 "j "140 "jn:V:" 139 141 #endif /* PROG_HAS_JACK */ 140 142 #ifdef PROG_HAS_OUTPUT … … 165 167 #ifdef PROG_HAS_JACK 166 168 {"jack", 0, NULL, 'j'}, 169 {"miditap-note", 1, NULL, 'n'}, 170 {"miditap-velo", 1, NULL, 'V'}, 167 171 #endif /* PROG_HAS_JACK */ 168 172 #ifdef PROG_HAS_OUTPUT … … 208 212 usejack = 1; 209 213 break; 214 case 'n': 215 miditap_note = atoi (optarg); 216 break; 217 case 'V': 218 miditap_velo = atoi (optarg); 219 break; 210 220 case 'i': 211 221 source_uri = optarg;
Note: See TracChangeset
for help on using the changeset viewer.