Fall back to builtin resampler, no longer speex
This commit is contained in:
@@ -140,7 +140,7 @@ if resampler == 'auto'
|
|||||||
if samplerate_dep.found()
|
if samplerate_dep.found()
|
||||||
resampler = 'libsamplerate'
|
resampler = 'libsamplerate'
|
||||||
else
|
else
|
||||||
resampler = 'speex'
|
resampler = 'builtin'
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -447,7 +447,7 @@ if not get_option('no_shared')
|
|||||||
message('Will build Rubber Band Library shared library')
|
message('Will build Rubber Band Library shared library')
|
||||||
rubberband_dynamic = shared_library(
|
rubberband_dynamic = shared_library(
|
||||||
rubberband_dynamic_name,
|
rubberband_dynamic_name,
|
||||||
objects: rubberband_static.extract_all_objects(),
|
objects: rubberband_static.extract_all_objects(recursive: true),
|
||||||
link_args: [
|
link_args: [
|
||||||
arch_flags,
|
arch_flags,
|
||||||
feature_libraries,
|
feature_libraries,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ option('resampler',
|
|||||||
type: 'combo',
|
type: 'combo',
|
||||||
choices: ['auto', 'builtin', 'libsamplerate', 'speex', 'ipp'],
|
choices: ['auto', 'builtin', 'libsamplerate', 'speex', 'ipp'],
|
||||||
value: 'auto',
|
value: 'auto',
|
||||||
description: 'Resampler library to use. Recommended is libsamplerate. The default (auto) will use libsamplerate if available, speex otherwise.')
|
description: 'Resampler library to use. The default (auto) will use libsamplerate if available, the builtin implementation otherwise.')
|
||||||
|
|
||||||
option('ipp_path',
|
option('ipp_path',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
|
|||||||
Reference in New Issue
Block a user