diff src/audacious/equalizer_flow.c @ 4300:060c9865ea17

forgotten files
author Eugene Zagidullin <e.asphyx@gmail.com>
date Sat, 23 Feb 2008 16:37:02 +0300
parents
children cfaecedace4e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/audacious/equalizer_flow.c	Sat Feb 23 16:37:02 2008 +0300
@@ -0,0 +1,112 @@
+/*  Audacious - Cross-platform multimedia player
+ *  Copyright (C) 2005-2008  Audacious team
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; under version 3 of the License.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see <http://www.gnu.org/licenses>.
+ *
+ *  The Audacious team does not consider modular code linking to
+ *  Audacious or using our public API to be a derived work.
+ */
+
+#define AUD_DEBUG
+
+#include <glib.h>
+#include "main.h"
+#include "plugin.h"
+#include "flow.h"
+
+#include "af_compat.h"
+#include "equalizer_flow.h"
+
+int equalizer_open(af_instance_t* af); /* af_equalizer.c */
+
+static af_instance_t *eq = NULL;
+static gint eq_nch = 0;
+static gint eq_rate = 0;
+static gboolean bands_changed = FALSE;
+
+static void
+equalizer_flow_reinit(gint rate, gint nch)
+{
+    af_data_t data;
+
+    AUDDBG("\n");
+    if(eq == NULL) return;
+
+    data.rate = rate;
+    data.nch = nch;
+    data.bps = 4;
+    data.format = AF_FORMAT_FLOAT_NE;
+    eq->control(eq, AF_CONTROL_REINIT, &data);
+}
+
+void
+equalizer_flow(FlowContext *context)
+{
+    af_data_t data;
+
+    if(!cfg.equalizer_active || eq == NULL) return;
+
+    if(context->fmt != FMT_FLOAT) {
+        context->error = TRUE;
+        return;
+    }
+
+    if(eq_nch != context->channels ||
+       eq_rate != context->srate ||
+       bands_changed) {
+        equalizer_flow_reinit(context->srate, context->channels);
+        eq_nch = context->channels;
+        eq_rate = context->srate;
+        bands_changed = FALSE;
+    }
+    
+    data.nch = context->channels;
+    data.audio = context->data;
+    data.len = context->len;
+    eq->play(eq, &data);
+}
+
+void
+equalizer_flow_set_bands(gfloat pre, gfloat *bands)
+{
+    int i;
+    af_control_ext_t ctl;
+    AUDDBG("\n");
+    
+    if(eq == NULL) {
+        eq = g_malloc(sizeof(af_instance_t));
+        equalizer_open(eq);
+    }
+    
+    ctl.arg = bands;
+    for(i = 0; i < AF_NCH; i++) {
+        ctl.ch = i;
+        eq->control(eq, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &ctl);
+    }
+
+    bands_changed = TRUE;
+}
+
+void
+equalizer_flow_free()
+{
+    AUDDBG("\n");
+    if(eq != NULL) {
+        eq->uninit(eq);
+        g_free(eq);
+        eq = NULL;
+        eq_nch = 0;
+        eq_rate = 0;
+        bands_changed = FALSE;
+    }
+}