mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-01-04 22:10:15 +01:00
m-si-adapter: rename algorithms to audio-utils
This commit is contained in:
parent
2747d21de2
commit
39ef6df7ce
6 changed files with 9 additions and 9 deletions
|
|
@ -93,7 +93,7 @@ shared_library(
|
|||
'wireplumber-module-si-adapter',
|
||||
[
|
||||
'module-si-adapter.c',
|
||||
'module-si-adapter/algorithms.c',
|
||||
'module-si-adapter/audio-utils.c',
|
||||
],
|
||||
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-si-adapter"'],
|
||||
install : true,
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
#include <spa/param/audio/raw.h>
|
||||
#include <spa/param/param.h>
|
||||
|
||||
#include "module-si-adapter/algorithms.h"
|
||||
#include "module-si-adapter/audio-utils.h"
|
||||
|
||||
enum {
|
||||
STEP_VERIFY_CONFIG = WP_TRANSITION_STEP_CUSTOM_START,
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
#include <spa/param/format-utils.h>
|
||||
#include <spa/param/audio/format.h>
|
||||
|
||||
#include "algorithms.h"
|
||||
#include "audio-utils.h"
|
||||
|
||||
static enum spa_audio_format
|
||||
select_format (WpSpaPod *value)
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
#include <spa/param/audio/format.h>
|
||||
#include <spa/param/audio/format-utils.h>
|
||||
|
||||
#include "../../modules/module-si-adapter/algorithms.h"
|
||||
#include "../../modules/module-si-adapter/audio-utils.h"
|
||||
|
||||
static void
|
||||
test_choose_sensible_raw_audio_format (void)
|
||||
|
|
@ -129,7 +129,7 @@ main (int argc, char *argv[])
|
|||
g_test_init (&argc, &argv, NULL);
|
||||
g_log_set_writer_func (wp_log_writer_default, NULL, NULL);
|
||||
|
||||
g_test_add_func ("/modules/algorithms/choose_sensible_raw_audio_format",
|
||||
g_test_add_func ("/modules/audio_utils/choose_sensible_raw_audio_format",
|
||||
test_choose_sensible_raw_audio_format);
|
||||
|
||||
return g_test_run ();
|
||||
|
|
@ -10,11 +10,11 @@ common_args = [
|
|||
]
|
||||
|
||||
test(
|
||||
'test-algorithms',
|
||||
executable('test-algorithms',
|
||||
'test-audio-utils',
|
||||
executable('test-audio-utils',
|
||||
[
|
||||
'algorithms.c',
|
||||
'../../modules/module-si-adapter/algorithms.c'
|
||||
'audio-utils.c',
|
||||
'../../modules/module-si-adapter/audio-utils.c'
|
||||
],
|
||||
dependencies: common_deps, c_args: common_args),
|
||||
env: common_env,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue