mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
b628f1bc8f
Test pitch with different forward and backward playback rates. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6247>
14 lines
493 B
Meson
14 lines
493 B
Meson
if not get_option('soundtouch').disabled() and soundtouch_dep.found()
|
|
executable('pitch-test', 'pitch-test.c',
|
|
include_directories: [configinc],
|
|
dependencies: [gst_dep, gstcontroller_dep],
|
|
install: false)
|
|
|
|
configure_file(input: '../files/audio-8s-then-reverse.ogg',
|
|
output: 'audio-8s-then-reverse.ogg',
|
|
copy: true)
|
|
executable('pitch-playback-test', 'pitch-playback-test.c',
|
|
include_directories: [configinc],
|
|
dependencies: [gst_dep],
|
|
install: false)
|
|
endif
|