Blob Blame History Raw
diff -Nur audacious-plugin-fc-0.6-aud30/src/configure.c audacious-plugin-fc-0.6-aud31/src/configure.c
--- audacious-plugin-fc-0.6-aud30/src/configure.c	2011-10-13 23:17:11.000000000 +0200
+++ audacious-plugin-fc-0.6-aud31/src/configure.c	2011-10-13 23:21:35.405306867 +0200
@@ -1,4 +1,3 @@
-#include <audacious/configdb.h>
 #include <audacious/plugin.h>
 #include <audacious/preferences.h>
 #include <glib.h>
@@ -8,26 +7,20 @@
 FCpluginConfig fc_myConfig;
 FCpluginConfig config;
 
-static gchar configSection[] = "FutureComposer";
+static gchar const configSection[] = "FutureComposer";
 
 static const gint FREQ_SAMPLE_48 = 48000;
 static const gint FREQ_SAMPLE_44 = 44100;
 static const gint FREQ_SAMPLE_22 = 22050;
 
 void fc_ip_load_config() {
-    mcs_handle_t *cfg;
-
     fc_myConfig.frequency = FREQ_SAMPLE_44;
     fc_myConfig.precision = 8;
     fc_myConfig.channels = 1;
     
-    if ((cfg = aud_cfg_db_open())) {
-        aud_cfg_db_get_int(cfg, configSection, "frequency", &fc_myConfig.frequency);
-        aud_cfg_db_get_int(cfg, configSection, "precision", &fc_myConfig.precision);
-        aud_cfg_db_get_int(cfg, configSection, "channels", &fc_myConfig.channels);
-
-        aud_cfg_db_close(cfg);
-    }
+    fc_myConfig.frequency = aud_get_int(configSection, "frequency");
+    fc_myConfig.precision = aud_get_int(configSection, "precision");
+    fc_myConfig.channels = aud_get_int(configSection, "channels");
 
     fc_myConfig.freq48 = fc_myConfig.freq44 = fc_myConfig.freq22 = FALSE;
     fc_myConfig.bits16 = fc_myConfig.bits8 = FALSE;
@@ -65,14 +58,9 @@
 }
 
 static void fc_ip_config_save() {
-    mcs_handle_t *cfg;
-
-    if ((cfg = aud_cfg_db_open())) {
-        aud_cfg_db_set_int(cfg, configSection, "frequency", fc_myConfig.frequency);
-        aud_cfg_db_set_int(cfg, configSection, "precision", fc_myConfig.precision);
-        aud_cfg_db_set_int(cfg, configSection, "channels", fc_myConfig.channels);
-        aud_cfg_db_close(cfg);
-    }
+    aud_set_int(configSection, "frequency", fc_myConfig.frequency);
+    aud_set_int(configSection, "precision", fc_myConfig.precision);
+    aud_set_int(configSection, "channels", fc_myConfig.channels);
 }
 
 static void configure_apply() {
@@ -126,16 +114,16 @@
 };
 
 static PreferencesWidget prefs_top_row[] = {
-    {WIDGET_BOX, "Frequency [Hz]:", NULL, NULL, NULL, FALSE,
+    {WIDGET_BOX, "Frequency [Hz]:", NULL, NULL, NULL, FALSE, VALUE_NULL, NULL, NULL,
      {.box = {prefs_frequency, G_N_ELEMENTS(prefs_frequency), FALSE, TRUE}}},
-    {WIDGET_BOX, "Precision [bits]:", NULL, NULL, NULL, FALSE,
+    {WIDGET_BOX, "Precision [bits]:", NULL, NULL, NULL, FALSE, VALUE_NULL, NULL, NULL,
      {.box = {prefs_precision, G_N_ELEMENTS(prefs_precision), FALSE, TRUE}}},
-    {WIDGET_BOX, "Channels:", NULL, NULL, NULL, FALSE,
+    {WIDGET_BOX, "Channels:", NULL, NULL, NULL, FALSE, VALUE_NULL, NULL, NULL,
      {.box = {prefs_channels, G_N_ELEMENTS(prefs_channels), FALSE, TRUE}}},
 };
 
 static PreferencesWidget prefs[] = {
-    {WIDGET_BOX, NULL, NULL, NULL, NULL, FALSE,
+    {WIDGET_BOX, NULL, NULL, NULL, NULL, FALSE, VALUE_NULL, NULL, NULL,
      {.box = {prefs_top_row, G_N_ELEMENTS(prefs_top_row), TRUE, FALSE}}},
 };