audioconvert: add unit test for format conversion

Add unit test for fmt conversion and fix some bugs
Add empty fmt-ops benchmark
This commit is contained in:
Wim Taymans 2019-01-23 15:59:54 +01:00
parent a1d45d2b25
commit 6f586602af
6 changed files with 362 additions and 47 deletions

View file

@ -7,7 +7,7 @@ test_apps = [
foreach a : test_apps
test(a,
executable(a, a + '.c',
dependencies : [dl_lib, pthread_lib],
dependencies : [dl_lib, pthread_lib, mathlib ],
include_directories : [spa_inc ],
c_args : [ '-D_GNU_SOURCE' ],
install : false),
@ -32,7 +32,7 @@ benchmark_apps = [
foreach a : benchmark_apps
benchmark(a,
executable(a, a + '.c',
dependencies : [dl_lib, pthread_lib],
dependencies : [dl_lib, pthread_lib, mathlib ],
include_directories : [spa_inc ],
c_args : [ '-D_GNU_SOURCE' ],
install : false),