diff src/echo_plugin/echo.c @ 2124:b8da6a0b0da2

s/bmp_cfg_/aud_cfg_/g
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 24 Oct 2007 07:34:02 +0300
parents 2ebeb7816c5e
children 4d6045c20cc5
line wrap: on
line diff
--- a/src/echo_plugin/echo.c	Wed Oct 24 07:32:18 2007 +0300
+++ b/src/echo_plugin/echo.c	Wed Oct 24 07:34:02 2007 +0300
@@ -47,12 +47,12 @@
 	if (sizeof(short) != sizeof(gint16))
 		abort();
 
-	cfg = bmp_cfg_db_open();
-	bmp_cfg_db_get_int(cfg, "echo_plugin", "delay", &echo_delay);
-	bmp_cfg_db_get_int(cfg, "echo_plugin", "feedback", &echo_feedback);
-	bmp_cfg_db_get_int(cfg, "echo_plugin", "volume", &echo_volume);
-	bmp_cfg_db_get_bool(cfg, "echo_plugin", "enable_surround", &echo_surround_enable);
-	bmp_cfg_db_close(cfg);
+	cfg = aud_cfg_db_open();
+	aud_cfg_db_get_int(cfg, "echo_plugin", "delay", &echo_delay);
+	aud_cfg_db_get_int(cfg, "echo_plugin", "feedback", &echo_feedback);
+	aud_cfg_db_get_int(cfg, "echo_plugin", "volume", &echo_volume);
+	aud_cfg_db_get_bool(cfg, "echo_plugin", "enable_surround", &echo_surround_enable);
+	aud_cfg_db_close(cfg);
 }
 
 static void cleanup(void)