gstreamer/subprojects/gst-plugins-bad/tests/interactive/meson.build
Loïc Le Page b628f1bc8f pitch: add interactive test
Test pitch with different forward and backward playback rates.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6247>
2024-05-02 10:24:30 +02:00

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