- Timestamp:
- Jul 2, 2020, 7:03:56 PM (4 years ago)
- Branches:
- feature/cnn, feature/crepe, fix/ffmpeg5, master
- Children:
- e7c6216
- Parents:
- 7b8e51c (diff), bd183b3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
r7b8e51c r05ed7f5 82 82 help_str = 'compile with samplerate (auto)', 83 83 help_disable_str = 'disable samplerate') 84 add_option_enable_disable(ctx, 'rubberband', default = None, 85 help_str = 'compile with rubberband (auto)', 86 help_disable_str = 'disable rubberband') 84 87 add_option_enable_disable(ctx, 'memcpy', default = True, 85 88 help_str = 'use memcpy hacks (default)', … … 141 144 'samplerate', 142 145 'jack', 146 'rubberband', 143 147 'avcodec', 144 148 'blas', … … 416 420 args = '--cflags --libs samplerate >= 0.0.15', 417 421 mandatory = ctx.options.enable_samplerate) 422 423 # check for librubberband 424 if (ctx.options.enable_rubberband != False): 425 ctx.check_cfg(package = 'rubberband', atleast_version = '1.3', 426 args = '--cflags --libs', 427 mandatory = ctx.options.enable_rubberband) 418 428 419 429 # check for jack
Note: See TracChangeset
for help on using the changeset viewer.