Fix warning on 64-bit architectures. (sizeof() returns size_t, which is not int)
[platform/upstream/gst-plugins-good.git] / ext / ladspa / gstladspa.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *               <2001> Steve Baker <stevebaker_org@yahoo.co.uk>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include <string.h>
22 #include <math.h>
23 #include <gst/control/control.h>
24 #include <gst/audio/audio.h>
25
26 #include "gstladspa.h"
27 #include <ladspa.h>     /* main ladspa sdk include file */
28 #include "utils.h"      /* ladspa sdk utility functions */
29
30
31 /* takes ownership of the name */
32 static GstPadTemplate*
33 ladspa_sink_factory (gchar *name)
34 {
35   return GST_PAD_TEMPLATE_NEW (
36   name,
37   GST_PAD_SINK,
38   GST_PAD_ALWAYS,
39   gst_caps_new (
40     "ladspa_sink",
41     "audio/x-raw-float",
42     GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS
43     )
44   );
45 }
46
47 /* takes ownership of the name */
48 static GstPadTemplate*
49 ladspa_src_factory (gchar *name)
50 {
51   return GST_PAD_TEMPLATE_NEW (
52   name,
53   GST_PAD_SRC,
54   GST_PAD_ALWAYS,
55   gst_caps_new (
56     "ladspa_src",
57     "audio/x-raw-float",
58     GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS
59     )
60   );
61 }
62
63 static void                     gst_ladspa_class_init           (GstLADSPAClass *klass);
64 static void                     gst_ladspa_init                 (GstLADSPA *ladspa);
65
66 static void                     gst_ladspa_update_int           (const GValue *value, gpointer data);
67 static GstPadLinkReturn         gst_ladspa_link                 (GstPad *pad, GstCaps *caps);
68 static void                     gst_ladspa_force_src_caps       (GstLADSPA *ladspa, GstPad *pad);
69
70 static void                     gst_ladspa_set_property         (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
71 static void                     gst_ladspa_get_property         (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
72
73 static gboolean                 gst_ladspa_instantiate          (GstLADSPA *ladspa);
74 static void                     gst_ladspa_activate             (GstLADSPA *ladspa);
75 static void                     gst_ladspa_deactivate           (GstLADSPA *ladspa);
76
77 static GstElementStateReturn    gst_ladspa_change_state         (GstElement *element);
78 static void                     gst_ladspa_loop                 (GstElement *element);
79 static void                     gst_ladspa_chain                (GstPad *pad,GstBuffer *buf);
80 static GstBuffer *              gst_ladspa_get                  (GstPad *pad);
81
82 static GstElementClass *parent_class = NULL;
83
84 static GstPlugin *ladspa_plugin;
85 static GHashTable *ladspa_descriptors;
86
87 enum {
88   ARG_0,
89   ARG_SAMPLERATE,
90   ARG_BUFFERSIZE,
91   ARG_LAST,
92 };
93
94 GST_DEBUG_CATEGORY_STATIC (ladspa_debug);
95 #define DEBUG(...) \
96     GST_CAT_LEVEL_LOG (ladspa_debug, GST_LEVEL_DEBUG, NULL, __VA_ARGS__)
97 #define DEBUG_OBJ(obj,...) \
98     GST_CAT_LEVEL_LOG (ladspa_debug, GST_LEVEL_DEBUG, obj, __VA_ARGS__)
99
100 static void
101 gst_ladspa_class_init (GstLADSPAClass *klass)
102 {
103   GObjectClass *gobject_class;
104   GstElementClass *gstelement_class;
105   LADSPA_Descriptor *desc;
106   gint i,current_portnum,sinkcount,srccount,controlcount;
107   gint hintdesc;
108   gint argtype,argperms;
109   GParamSpec *paramspec = NULL;
110   gchar *argname, *tempstr, *paren;
111
112   gobject_class = (GObjectClass*)klass;
113   gstelement_class = (GstElementClass*)klass;
114
115   gobject_class->set_property = gst_ladspa_set_property;
116   gobject_class->get_property = gst_ladspa_get_property;
117
118   gstelement_class->change_state = gst_ladspa_change_state;
119
120   /* look up and store the ladspa descriptor */
121   klass->descriptor = g_hash_table_lookup(ladspa_descriptors,GINT_TO_POINTER(G_TYPE_FROM_CLASS(klass)));
122   desc = klass->descriptor;
123
124   klass->numports = desc->PortCount;
125
126   klass->numsinkpads = 0;
127   klass->numsrcpads = 0;
128   klass->numcontrols = 0;
129
130   /* walk through the ports, count the input, output and control ports */
131   for (i=0; i<desc->PortCount; i++) {
132     if (LADSPA_IS_PORT_AUDIO(desc->PortDescriptors[i]))
133       if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[i]))
134         klass->numsinkpads++;
135       else
136         klass->numsrcpads++;
137     else if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[i]))
138       klass->numcontrols++;
139   }
140
141   DEBUG ("ladspa element class: init %s with %d sink, %d src, %d control\n",
142          g_type_name (G_TYPE_FROM_CLASS (klass)),
143          klass->numsinkpads, klass->numsrcpads, klass->numcontrols);
144
145   klass->srcpad_portnums = g_new0(gint,klass->numsrcpads);
146   klass->sinkpad_portnums = g_new0(gint,klass->numsinkpads);
147   klass->control_portnums = g_new0(gint,klass->numcontrols);
148   sinkcount = 0;
149   srccount = 0;
150   controlcount = 0;
151
152   /* walk through the ports, note the portnums for srcpads, sinkpads and control
153      params */
154   for (i=0; i<desc->PortCount; i++) {
155     if (LADSPA_IS_PORT_AUDIO(desc->PortDescriptors[i]))
156       if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[i]))
157         klass->sinkpad_portnums[sinkcount++] = i;
158       else
159         klass->srcpad_portnums[srccount++] = i;
160     else if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[i]))
161       klass->control_portnums[controlcount++] = i;
162   }
163
164   /* now build the control info from the control ports */
165   klass->control_info = g_new0(ladspa_control_info,klass->numcontrols);
166     
167   for (i=0;i<klass->numcontrols;i++) {
168     current_portnum = klass->control_portnums[i];
169     
170     /* short name for hint descriptor */
171     hintdesc = desc->PortRangeHints[current_portnum].HintDescriptor;
172
173     /* get the various bits */
174     if (LADSPA_IS_HINT_TOGGLED(hintdesc))
175       klass->control_info[i].toggled = TRUE;
176     if (LADSPA_IS_HINT_LOGARITHMIC(hintdesc))
177       klass->control_info[i].logarithmic = TRUE;
178     if (LADSPA_IS_HINT_INTEGER(hintdesc))
179       klass->control_info[i].integer = TRUE;
180
181     /* figure out the argument details */
182     if (klass->control_info[i].toggled) argtype = G_TYPE_BOOLEAN;
183     else if (klass->control_info[i].integer) argtype = G_TYPE_INT;
184     else argtype = G_TYPE_FLOAT;
185
186     /* grab the bounds */
187     if (LADSPA_IS_HINT_BOUNDED_BELOW(hintdesc)) {
188       klass->control_info[i].lower = TRUE;
189       klass->control_info[i].lowerbound =
190         desc->PortRangeHints[current_portnum].LowerBound;
191     } else {
192       if (argtype==G_TYPE_INT) klass->control_info[i].lowerbound = (gfloat)G_MININT;
193       if (argtype==G_TYPE_FLOAT) klass->control_info[i].lowerbound = -G_MAXFLOAT;
194     }
195     
196     if (LADSPA_IS_HINT_BOUNDED_ABOVE(hintdesc)) {
197       klass->control_info[i].upper = TRUE;
198       klass->control_info[i].upperbound =
199         desc->PortRangeHints[current_portnum].UpperBound;
200       if (LADSPA_IS_HINT_SAMPLE_RATE(hintdesc)) {
201         klass->control_info[i].samplerate = TRUE;
202         klass->control_info[i].upperbound *= 44100; /* FIXME? */
203       }
204     } else {
205       if (argtype==G_TYPE_INT) klass->control_info[i].upperbound = (gfloat)G_MAXINT;
206       if (argtype==G_TYPE_FLOAT) klass->control_info[i].upperbound = G_MAXFLOAT;
207     }
208
209     /* use the lowerbound as the default value */
210     klass->control_info[i].def = klass->control_info[i].lowerbound;
211
212 #ifdef LADSPA_IS_HINT_HAS_DEFAULT
213     /* figure out the defaults */
214     if (LADSPA_IS_HINT_HAS_DEFAULT (hintdesc)) {
215       if (LADSPA_IS_HINT_DEFAULT_MINIMUM (hintdesc))
216         klass->control_info[i].def = klass->control_info[i].lowerbound;
217       else if (LADSPA_IS_HINT_DEFAULT_LOW (hintdesc))
218         if (LADSPA_IS_HINT_LOGARITHMIC (hintdesc))
219           klass->control_info[i].def = exp (0.75*log(klass->control_info[i].lowerbound) +
220                                                 0.25*log(klass->control_info[i].upperbound));
221         else
222           klass->control_info[i].def = (0.75*klass->control_info[i].lowerbound +
223                                             0.25*klass->control_info[i].upperbound);
224       else if (LADSPA_IS_HINT_DEFAULT_MIDDLE (hintdesc))
225         if (LADSPA_IS_HINT_LOGARITHMIC (hintdesc))
226           klass->control_info[i].def = exp (0.5*log(klass->control_info[i].lowerbound) +
227                                                 0.5*log(klass->control_info[i].upperbound));
228         else
229           klass->control_info[i].def = (0.5*klass->control_info[i].lowerbound +
230                                             0.5*klass->control_info[i].upperbound);
231       else if (LADSPA_IS_HINT_DEFAULT_HIGH (hintdesc))
232         if (LADSPA_IS_HINT_LOGARITHMIC (hintdesc))
233           klass->control_info[i].def = exp (0.25*log(klass->control_info[i].lowerbound) +
234                                                 0.75*log(klass->control_info[i].upperbound));
235         else
236           klass->control_info[i].def = (0.25*klass->control_info[i].lowerbound +
237                                             0.75*klass->control_info[i].upperbound);
238       else if (LADSPA_IS_HINT_DEFAULT_MAXIMUM (hintdesc))
239         klass->control_info[i].def = klass->control_info[i].upperbound;
240       else if (LADSPA_IS_HINT_DEFAULT_0 (hintdesc))
241         klass->control_info[i].def = 0.0;
242       else if (LADSPA_IS_HINT_DEFAULT_1 (hintdesc))
243         klass->control_info[i].def = 1.0;
244       else if (LADSPA_IS_HINT_DEFAULT_100 (hintdesc))
245         klass->control_info[i].def = 100.0;
246       else if (LADSPA_IS_HINT_DEFAULT_440 (hintdesc))
247         klass->control_info[i].def = 440.0;
248     }
249 #endif /* LADSPA_IS_HINT_HAS_DEFAULT */
250
251     klass->control_info[i].def = CLAMP(klass->control_info[i].def,
252                                        klass->control_info[i].lowerbound,
253                                        klass->control_info[i].upperbound);
254     
255     if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[current_portnum])) {
256       argperms = G_PARAM_READWRITE;
257       klass->control_info[i].writable = TRUE;
258     } else {
259       argperms = G_PARAM_READABLE;
260       klass->control_info[i].writable = FALSE;
261     }
262
263     klass->control_info[i].name = g_strdup(desc->PortNames[current_portnum]);
264     argname = g_strdup(klass->control_info[i].name);
265     /* find out if there is a (unitname) at the end of the argname and get rid
266        of it */
267     paren = g_strrstr (argname, " (");
268     if (paren != NULL) {
269       *paren = '\0';
270     }
271     /* this is the same thing that param_spec_* will do */
272     g_strcanon (argname, G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "-", '-');
273     /* satisfy glib2 (argname[0] must be [A-Za-z]) */
274     if (!((argname[0] >= 'a' && argname[0] <= 'z') || (argname[0] >= 'A' && argname[0] <= 'Z'))) {
275       tempstr = argname;
276       argname = g_strconcat("param-", argname, NULL);
277       g_free (tempstr);
278     }
279     
280     /* check for duplicate property names */
281     if (g_object_class_find_property(G_OBJECT_CLASS(klass), argname) != NULL){
282       gint numarg=1;
283       gchar *numargname = g_strdup_printf("%s_%d",argname,numarg++);
284       while (g_object_class_find_property(G_OBJECT_CLASS(klass), numargname) != NULL){
285         g_free(numargname);
286         numargname = g_strdup_printf("%s_%d",argname,numarg++);
287       }
288       argname = numargname;
289     }
290     
291     klass->control_info[i].param_name = argname;
292     
293     DEBUG ("adding arg %s from %s", argname, klass->control_info[i].name);
294     
295     if (argtype==G_TYPE_BOOLEAN){
296       paramspec = g_param_spec_boolean(argname,argname,argname, FALSE, argperms);
297     } else if (argtype==G_TYPE_INT){      
298       paramspec = g_param_spec_int(argname,argname,argname, 
299         (gint)klass->control_info[i].lowerbound, 
300         (gint)klass->control_info[i].upperbound, 
301         (gint)klass->control_info[i].def, argperms);
302     } else if (klass->control_info[i].samplerate){
303       paramspec = g_param_spec_float(argname,argname,argname, 
304         0.0, G_MAXFLOAT, 
305         0.0, argperms);
306     } else {
307       paramspec = g_param_spec_float(argname,argname,argname, 
308         klass->control_info[i].lowerbound, klass->control_info[i].upperbound, 
309         klass->control_info[i].def, argperms);
310     }
311     
312     /* properties have an offset of 1 */
313     g_object_class_install_property(G_OBJECT_CLASS(klass), i+1, paramspec);
314   }
315 }
316
317 static void
318 gst_ladspa_init (GstLADSPA *ladspa)
319 {
320   GstLADSPAClass *oclass;
321   ladspa_control_info cinfo;
322   GList *l;
323   LADSPA_Descriptor *desc;
324   gint i,sinkcount,srccount;
325
326   oclass = (GstLADSPAClass*)G_OBJECT_GET_CLASS (ladspa);
327   desc = oclass->descriptor;
328   ladspa->descriptor = oclass->descriptor;
329   
330   /* allocate the various arrays */
331   ladspa->srcpads = g_new0(GstPad*,oclass->numsrcpads);
332   ladspa->sinkpads = g_new0(GstPad*,oclass->numsinkpads);
333   ladspa->controls = g_new(gfloat,oclass->numcontrols);
334   ladspa->dpman = gst_dpman_new ("ladspa_dpman", GST_ELEMENT(ladspa));
335   
336   /* set up pads */
337   sinkcount = 0;
338   srccount = 0;
339   for (l=GST_ELEMENT_CLASS (oclass)->padtemplates; l; l=l->next) {
340     GstPad *pad = gst_pad_new_from_template (GST_PAD_TEMPLATE (l->data),
341                                              GST_PAD_TEMPLATE_NAME_TEMPLATE (l->data));
342     gst_pad_set_link_function (pad, gst_ladspa_link);
343     gst_element_add_pad ((GstElement*)ladspa, pad);
344
345     if (GST_PAD_DIRECTION (pad) == GST_PAD_SINK)
346       ladspa->sinkpads[sinkcount++] = pad;
347     else
348       ladspa->srcpads[srccount++] = pad;
349   }
350   
351   /* set up dparams */
352   for (i=0; i<oclass->numcontrols; i++) {
353     if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[i])) {
354       cinfo = oclass->control_info[i];
355       ladspa->controls[i]=cinfo.def;
356       
357       if (cinfo.toggled){
358         gst_dpman_add_required_dparam_callback (
359           ladspa->dpman, 
360           g_param_spec_int(cinfo.param_name, cinfo.name, cinfo.name,
361                            0, 1, (gint)(ladspa->controls[i]), G_PARAM_READWRITE),
362           "int", gst_ladspa_update_int, &(ladspa->controls[i])
363         );
364       }
365       else if (cinfo.integer){
366         gst_dpman_add_required_dparam_callback (
367           ladspa->dpman, 
368           g_param_spec_int(cinfo.param_name, cinfo.name, cinfo.name,
369                            (gint)cinfo.lowerbound, (gint)cinfo.upperbound,
370                            (gint)ladspa->controls[i], G_PARAM_READWRITE),
371           "int", gst_ladspa_update_int, &(ladspa->controls[i])
372         );
373       }
374       else if (cinfo.samplerate){
375         gst_dpman_add_required_dparam_direct (
376           ladspa->dpman, 
377           g_param_spec_float(cinfo.param_name, cinfo.name, cinfo.name,
378                            cinfo.lowerbound, cinfo.upperbound,
379                            ladspa->controls[i], G_PARAM_READWRITE),
380           "hertz-rate-bound", &(ladspa->controls[i])
381         );
382       }
383       else {
384         gst_dpman_add_required_dparam_direct (
385           ladspa->dpman, 
386           g_param_spec_float(cinfo.param_name, cinfo.name, cinfo.name,
387                            cinfo.lowerbound, cinfo.upperbound,
388                            ladspa->controls[i], G_PARAM_READWRITE),
389           "float", &(ladspa->controls[i])
390         );
391       }
392     }
393   }
394
395   /* nonzero default needed to instantiate() some plugins */
396   ladspa->samplerate = 44100;
397
398   ladspa->buffer_frames = 0; /* should be set with caps */
399   ladspa->activated = FALSE;
400   ladspa->bufpool = NULL;
401   ladspa->inplace_broken = LADSPA_IS_INPLACE_BROKEN(ladspa->descriptor->Properties);
402
403   if (sinkcount==0 && srccount == 1) {
404     /* get mode (no sink pads) */
405     DEBUG_OBJ (ladspa, "mono get mode with 1 src pad");
406
407     gst_pad_set_get_function (ladspa->srcpads[0], gst_ladspa_get);
408   } else if (sinkcount==1){
409     /* with one sink we can use the chain function */
410     DEBUG_OBJ (ladspa, "chain mode");
411
412     gst_pad_set_chain_function (ladspa->sinkpads[0], gst_ladspa_chain);
413   } else if (sinkcount > 1){
414     /* more than one sink pad needs loop mode */
415     DEBUG_OBJ (ladspa, "loop mode with %d sink pads and %d src pads", sinkcount, srccount);
416
417     gst_element_set_loop_function (GST_ELEMENT (ladspa), gst_ladspa_loop);
418   } else if (sinkcount==0 && srccount == 0) {
419     /* for example, a plugin with only control inputs and output -- just ignore
420      * it for now */
421   } else {
422     g_warning ("%d sink pads, %d src pads not yet supported", sinkcount, srccount);
423   }
424
425   gst_ladspa_instantiate (ladspa);
426 }
427
428 static void
429 gst_ladspa_update_int(const GValue *value, gpointer data)
430 {
431   gfloat *target = (gfloat*) data;
432   *target = (gfloat)g_value_get_int(value);
433 }
434
435 static GstPadLinkReturn
436 gst_ladspa_link (GstPad *pad, GstCaps *caps)
437 {
438   GstElement *element = (GstElement*)GST_PAD_PARENT (pad);
439   GstLADSPA *ladspa = (GstLADSPA*)element;
440   const GList *l = NULL;
441   gint rate;
442
443   if (GST_CAPS_IS_FIXED (caps)) {
444     /* if this fails in some other plugin, the graph is left in an inconsistent
445        state */
446     for (l=gst_element_get_pad_list (element); l; l=l->next)
447       if (pad != (GstPad*)l->data)
448         if (gst_pad_try_set_caps ((GstPad*)l->data, caps) <= 0)
449           return GST_PAD_LINK_REFUSED;
450     
451     /* we assume that the ladspa plugin can handle any sample rate, so this
452        check gets put last */
453     gst_caps_get_int (caps, "rate", &rate);
454     /* have to instantiate ladspa plugin when samplerate changes (groan) */
455     if (ladspa->samplerate != rate) {
456       ladspa->samplerate = rate;
457       if (! gst_ladspa_instantiate(ladspa))
458         return GST_PAD_LINK_REFUSED;
459     }
460     
461     gst_caps_get_int (caps, "buffer-frames", &ladspa->buffer_frames);
462     
463     if (ladspa->bufpool)
464       gst_buffer_pool_unref (ladspa->bufpool);
465     ladspa->bufpool = gst_buffer_pool_get_default (ladspa->buffer_frames * sizeof(gfloat),
466                                                    3);
467     
468     return GST_PAD_LINK_OK;
469   }
470   
471   return GST_PAD_LINK_DELAYED;
472 }
473
474 static void
475 gst_ladspa_force_src_caps(GstLADSPA *ladspa, GstPad *pad)
476 {
477   if (!ladspa->buffer_frames) {
478     ladspa->buffer_frames = 256; /* 5 ms at 44100 kHz (just a default...) */
479     g_return_if_fail (ladspa->bufpool == NULL);
480     ladspa->bufpool =
481       gst_buffer_pool_get_default (ladspa->buffer_frames * sizeof(gfloat), 3);
482   }
483
484   DEBUG_OBJ (ladspa, "forcing caps with rate=%d, buffer-frames=%d",
485              ladspa->samplerate, ladspa->buffer_frames);
486
487   gst_pad_try_set_caps (pad,
488     gst_caps_new (
489     "ladspa_src_caps",
490     "audio/x-raw-float",
491     gst_props_new (
492       "width",          GST_PROPS_INT (32),
493       "endianness",     GST_PROPS_INT (G_BYTE_ORDER),
494       "rate",           GST_PROPS_INT (ladspa->samplerate),
495       "buffer-frames",  GST_PROPS_INT (ladspa->buffer_frames),
496       "channels",       GST_PROPS_INT (1),
497       NULL)));
498 }
499
500 static void
501 gst_ladspa_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
502 {
503   GstLADSPA *ladspa = (GstLADSPA*)object;
504   GstLADSPAClass *oclass;
505   ladspa_control_info *control_info;
506
507   oclass = (GstLADSPAClass*)(G_OBJECT_GET_CLASS (object));
508
509   /* remember, properties have an offset of 1 */
510   prop_id--;
511
512   /* verify it exists */
513   g_return_if_fail (prop_id < oclass->numcontrols);
514
515   control_info = &(oclass->control_info[prop_id]);
516   g_return_if_fail (control_info->name != NULL);
517
518   /* check to see if it's writable */
519   g_return_if_fail (control_info->writable);
520
521   /* now see what type it is */
522   if (control_info->toggled)
523     ladspa->controls[prop_id] = g_value_get_boolean (value) ? 1.f : 0.f;
524   else if (control_info->integer)
525     ladspa->controls[prop_id] = g_value_get_int (value);
526   else
527     ladspa->controls[prop_id] = g_value_get_float (value);
528
529   DEBUG_OBJ (object, "set arg %s to %f", control_info->name, ladspa->controls[prop_id]);
530 }
531
532 static void
533 gst_ladspa_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
534 {
535   GstLADSPA *ladspa = (GstLADSPA*)object;
536   GstLADSPAClass *oclass = (GstLADSPAClass*)(G_OBJECT_GET_CLASS (object));
537   ladspa_control_info *control_info;
538
539   /* remember, properties have an offset of 1 */
540   prop_id--;
541
542   /* verify it exists */
543   g_return_if_fail (prop_id < oclass->numcontrols);
544
545   control_info = &(oclass->control_info[prop_id]);
546   g_return_if_fail (control_info->name != NULL);
547
548   /* now see what type it is */
549   if (control_info->toggled)
550     g_value_set_boolean (value, ladspa->controls[prop_id] == 1.0);
551   else if (control_info->integer)
552     g_value_set_int (value, (gint)ladspa->controls[prop_id]);
553   else
554     g_value_set_float (value, ladspa->controls[prop_id]);
555
556   DEBUG_OBJ (object, "got arg %s as %f", control_info->name, ladspa->controls[prop_id]);
557 }
558
559 static gboolean
560 gst_ladspa_instantiate (GstLADSPA *ladspa)
561 {
562   LADSPA_Descriptor *desc;
563   int i;
564   GstLADSPAClass *oclass = (GstLADSPAClass*)(G_OBJECT_GET_CLASS (ladspa));
565   gboolean was_activated;
566   
567   desc = ladspa->descriptor;
568   
569   /* check for old handle */
570   was_activated = ladspa->activated;
571   if (ladspa->handle != NULL){
572     gst_ladspa_deactivate(ladspa);
573     desc->cleanup(ladspa->handle);
574   }
575         
576   /* instantiate the plugin */ 
577   DEBUG_OBJ (ladspa, "instantiating the plugin at %d Hz", ladspa->samplerate);
578   
579   ladspa->handle = desc->instantiate(desc,ladspa->samplerate);
580   g_return_val_if_fail (ladspa->handle != NULL, FALSE);
581
582   /* connect the control ports */
583   for (i=0;i<oclass->numcontrols;i++)
584     desc->connect_port(ladspa->handle,
585                        oclass->control_portnums[i],
586                        &(ladspa->controls[i]));
587
588   /* reactivate if it was activated before the reinstantiation */
589   if (was_activated)
590     gst_ladspa_activate(ladspa);
591
592   return TRUE;
593 }
594
595 static GstElementStateReturn
596 gst_ladspa_change_state (GstElement *element)
597 {
598   LADSPA_Descriptor *desc;
599   GstLADSPA *ladspa = (GstLADSPA*)element;
600   desc = ladspa->descriptor;
601
602   switch (GST_STATE_TRANSITION (element)) {
603     case GST_STATE_NULL_TO_READY:
604       gst_ladspa_activate(ladspa);
605       break;
606     case GST_STATE_READY_TO_NULL:
607       gst_ladspa_deactivate(ladspa);
608       break;
609     default:
610       break;
611   }
612
613   if (GST_ELEMENT_CLASS (parent_class)->change_state)
614     return GST_ELEMENT_CLASS (parent_class)->change_state (element);
615
616   return GST_STATE_SUCCESS;
617 }
618
619 static void
620 gst_ladspa_activate (GstLADSPA *ladspa)
621 {
622   LADSPA_Descriptor *desc;
623   desc = ladspa->descriptor;
624   
625   if (ladspa->activated)
626     gst_ladspa_deactivate(ladspa);
627   
628   DEBUG_OBJ (ladspa, "activating");
629
630   /* activate the plugin (function might be null) */
631   if (desc->activate != NULL)
632     desc->activate(ladspa->handle);
633
634   ladspa->activated = TRUE;
635 }
636
637 static void
638 gst_ladspa_deactivate (GstLADSPA *ladspa)
639 {
640   LADSPA_Descriptor *desc;
641   desc = ladspa->descriptor;
642
643   DEBUG_OBJ (ladspa, "deactivating");
644
645   /* deactivate the plugin (function might be null) */
646   if (ladspa->activated && (desc->deactivate != NULL))
647     desc->deactivate(ladspa->handle);
648
649   ladspa->activated = FALSE;
650 }
651
652 static void
653 gst_ladspa_loop (GstElement *element)
654 {
655   guint        i, j, numsrcpads, numsinkpads;
656   guint        num_processed, num_to_process;
657   gint         largest_buffer;
658   LADSPA_Data  **data_in, **data_out;
659   GstBuffer    **buffers_in, **buffers_out;
660  
661   GstLADSPA       *ladspa = (GstLADSPA *)element;
662   GstLADSPAClass  *oclass = (GstLADSPAClass*)(G_OBJECT_GET_CLASS (ladspa));
663   LADSPA_Descriptor *desc = ladspa->descriptor;
664
665   numsinkpads = oclass->numsinkpads;
666   numsrcpads = oclass->numsrcpads;
667   
668   /* fixme: these mallocs need to die */
669   data_in = g_new0(LADSPA_Data*, numsinkpads);
670   data_out = g_new0(LADSPA_Data*, numsrcpads);
671   buffers_in = g_new0(GstBuffer*, numsinkpads);
672   buffers_out = g_new0(GstBuffer*, numsrcpads);
673   
674   largest_buffer = -1;
675
676   /* first get all the necessary data from the input ports */
677   for (i=0 ; i<numsinkpads ; i++){  
678   get_buffer:
679     buffers_in[i] = gst_pad_pull (ladspa->sinkpads[i]);
680     
681     if (GST_IS_EVENT (buffers_in[i])) {
682       /* push it out on all pads */
683       gst_data_ref_by_count ((GstData*)buffers_in[i], numsrcpads);
684       for (j=0; j<numsrcpads; j++)
685         gst_pad_push (ladspa->srcpads[j], buffers_in[i]);
686       if (GST_EVENT_TYPE (buffers_in[i]) == GST_EVENT_EOS) {
687         /* shut down */
688         gst_element_set_eos (element);
689         return;
690       } else {
691         goto get_buffer;
692       }
693     }
694
695     if (largest_buffer < 0)
696       largest_buffer = GST_BUFFER_SIZE (buffers_in[i])/sizeof(gfloat);
697     else
698       largest_buffer = MIN (GST_BUFFER_SIZE (buffers_in[i])/sizeof(gfloat), largest_buffer);
699     data_in[i] = (LADSPA_Data *) GST_BUFFER_DATA(buffers_in[i]);
700     GST_BUFFER_TIMESTAMP(buffers_in[i]) = ladspa->timestamp;
701   }
702
703   if (!ladspa->bufpool) {
704     gst_element_error (element, "Caps were never set, bailing...");
705     return;
706   }
707
708   i=0;
709   if (!ladspa->inplace_broken) {
710     for (; i<numsrcpads && i<numsinkpads; i++) {
711       /* reuse input buffers */
712       buffers_out[i] = buffers_in[i];
713       data_out[i] = data_in[i];
714     }
715   }
716   for (; i<numsrcpads; i++) {
717     /* we have to make new buffers -- at least we're taking them from a pool */
718     buffers_out[i] = gst_buffer_new_from_pool (ladspa->bufpool, 0, 0);
719     GST_BUFFER_TIMESTAMP (buffers_out[i]) = ladspa->timestamp;
720     data_out[i] = (LADSPA_Data*)GST_BUFFER_DATA (buffers_out[i]);
721   }
722   
723   GST_DPMAN_PREPROCESS(ladspa->dpman, largest_buffer, ladspa->timestamp);
724   num_processed = 0;
725
726   /* split up processing of the buffer into chunks so that dparams can
727    * be updated when required.
728    * In many cases the buffer will be processed in one chunk anyway.
729    */
730   while (GST_DPMAN_PROCESS (ladspa->dpman, num_processed)) {
731     num_to_process = GST_DPMAN_FRAMES_TO_PROCESS(ladspa->dpman);
732
733     for (i=0 ; i<numsinkpads ; i++)
734       desc->connect_port (ladspa->handle, oclass->sinkpad_portnums[i], data_in[i]);
735     for (i=0 ; i<numsrcpads ; i++)
736       desc->connect_port (ladspa->handle, oclass->srcpad_portnums[i], data_out[i]);
737
738     desc->run(ladspa->handle, num_to_process);
739
740     for (i=0 ; i<numsinkpads ; i++)
741       data_in[i] += num_to_process;
742     for (i=0 ; i<numsrcpads ; i++)
743       data_out[i] += num_to_process;
744     
745     num_processed += num_to_process;
746   }
747     
748   for (i=0 ; i<numsinkpads ; i++) {
749     if (i >= numsrcpads || buffers_out[i] != buffers_in[i])
750       gst_buffer_unref(buffers_in[i]);
751     data_in[i] = NULL;
752     buffers_in[i] = NULL;
753   }      
754   for (i=0 ; i<numsrcpads ; i++) {
755     DEBUG_OBJ (ladspa, "pushing buffer (%p) on src pad %d", buffers_out[i], i);
756     gst_pad_push (ladspa->srcpads[i], buffers_out[i]);
757     
758     data_out[i] = NULL;
759     buffers_out[i] = NULL;
760   }
761   
762   ladspa->timestamp += ladspa->buffer_frames * GST_SECOND / ladspa->samplerate;
763
764   /* FIXME: move these mallocs and frees to the state-change handler */
765
766   g_free (buffers_out);
767   g_free (buffers_in);
768   g_free (data_out);
769   g_free (data_in);
770 }
771
772 static void
773 gst_ladspa_chain (GstPad *pad, GstBuffer *buffer_in)
774 {
775   LADSPA_Descriptor *desc;
776   LADSPA_Data *data_in, **data_out = NULL;
777   GstBuffer **buffers_out = NULL;
778   unsigned long num_samples;
779   guint num_to_process, num_processed, i, numsrcpads;
780   GstLADSPA *ladspa;
781   GstLADSPAClass *oclass;
782
783   ladspa = (GstLADSPA*)GST_OBJECT_PARENT (pad);
784   oclass = (GstLADSPAClass *) (G_OBJECT_GET_CLASS (ladspa));
785   data_in = (LADSPA_Data *) GST_BUFFER_DATA(buffer_in);
786   num_samples = GST_BUFFER_SIZE(buffer_in) / sizeof(gfloat);
787   numsrcpads = oclass->numsrcpads;
788   desc = ladspa->descriptor;
789
790   /* we shouldn't get events here... */
791   g_return_if_fail (GST_IS_BUFFER (buffer_in));
792   
793   if (!ladspa->bufpool) {
794     gst_element_error ((GstElement*)ladspa, "Caps were never set, bailing...");
795     return;
796   }
797
798   /* FIXME: this function shouldn't need to malloc() anything */
799   if (numsrcpads > 0) {
800     buffers_out = g_new(GstBuffer*, numsrcpads);
801     data_out = g_new(LADSPA_Data*, numsrcpads);
802   }
803
804   i=0;
805   if (!ladspa->inplace_broken && numsrcpads) {
806     /* reuse the first (chained) buffer */
807     buffers_out[i] = buffer_in;
808     DEBUG ("reuse: %d", GST_BUFFER_SIZE (buffer_in));
809     data_out[i] = data_in;
810     i++;
811   }
812   for (; i<numsrcpads; i++) {
813     /* we have to make new buffers -- at least we're taking them from a pool */
814     buffers_out[i] = gst_buffer_new_from_pool (ladspa->bufpool, 0, 0);
815     /* the size of the buffer returned from the pool is the maximum size; this
816        chained buffer might be smaller */
817     GST_BUFFER_SIZE (buffers_out[i]) = GST_BUFFER_SIZE (buffer_in);
818     DEBUG ("new %d", GST_BUFFER_SIZE (buffer_in));
819     GST_BUFFER_TIMESTAMP (buffers_out[i]) = ladspa->timestamp;
820     data_out[i] = (LADSPA_Data*)GST_BUFFER_DATA (buffers_out[i]);
821   }
822
823   GST_DPMAN_PREPROCESS(ladspa->dpman, num_samples, GST_BUFFER_TIMESTAMP(buffer_in));
824   num_processed = 0;
825
826   /* split up processing of the buffer into chunks so that dparams can
827    * be updated when required.
828    * In many cases the buffer will be processed in one chunk anyway.
829    */
830   while(GST_DPMAN_PROCESS(ladspa->dpman, num_processed)) {
831     num_to_process = GST_DPMAN_FRAMES_TO_PROCESS(ladspa->dpman);
832
833     desc->connect_port(ladspa->handle,oclass->sinkpad_portnums[0],data_in);  
834     for (i=0 ; i<numsrcpads ; i++)
835       desc->connect_port(ladspa->handle,oclass->srcpad_portnums[i],data_out[i]);
836
837     desc->run(ladspa->handle, num_to_process);
838     
839     data_in += num_to_process;
840     for (i=0 ; i<numsrcpads ; i++)
841       data_out[i] += num_to_process;
842
843     num_processed += num_to_process;
844   }
845
846   if (!numsrcpads || buffers_out[0] != buffer_in)
847     gst_buffer_unref(buffer_in);
848
849   if (numsrcpads) {
850     for (i=0; i<numsrcpads; i++) {
851       DEBUG_OBJ (ladspa, "pushing buffer (%p, length %u bytes) on src pad %d",
852                  buffers_out[i], GST_BUFFER_SIZE (buffers_out[i]), i);
853       gst_pad_push (ladspa->srcpads[i], buffers_out[i]);
854     }
855
856     g_free(buffers_out);
857     g_free(data_out);
858   }
859 }
860
861 static GstBuffer *
862 gst_ladspa_get(GstPad *pad)
863 {  
864   GstLADSPA *ladspa;
865   GstLADSPAClass *oclass;
866   GstBuffer *buf;
867   LADSPA_Data *data;
868   LADSPA_Descriptor *desc;
869   guint num_to_process, num_processed;
870
871   ladspa = (GstLADSPA *)gst_pad_get_parent (pad);
872   oclass = (GstLADSPAClass*)(G_OBJECT_GET_CLASS(ladspa));
873   desc = ladspa->descriptor;
874
875   if (!ladspa->bufpool) {
876     /* capsnego hasn't happened... */
877     gst_ladspa_force_src_caps(ladspa, ladspa->srcpads[0]);
878   }
879
880   buf = gst_buffer_new_from_pool (ladspa->bufpool, 0, 0);
881   GST_BUFFER_TIMESTAMP(buf) = ladspa->timestamp;
882   data = (LADSPA_Data *) GST_BUFFER_DATA(buf);  
883
884   GST_DPMAN_PREPROCESS(ladspa->dpman, ladspa->buffer_frames, ladspa->timestamp);
885   num_processed = 0;
886
887   /* split up processing of the buffer into chunks so that dparams can
888    * be updated when required.
889    * In many cases the buffer will be processed in one chunk anyway.
890    */
891   while(GST_DPMAN_PROCESS(ladspa->dpman, num_processed)) {
892     num_to_process = GST_DPMAN_FRAMES_TO_PROCESS(ladspa->dpman);
893
894     /* update timestamp */  
895     ladspa->timestamp += num_to_process * GST_SECOND / ladspa->samplerate;
896
897     desc->connect_port(ladspa->handle,oclass->srcpad_portnums[0],data);  
898
899     desc->run(ladspa->handle, num_to_process);
900     
901     data += num_to_process;
902     num_processed = num_to_process;
903   }
904   
905   return buf;
906 }
907
908 static void
909 ladspa_describe_plugin(const char *pcFullFilename,
910                        void *pvPluginHandle,
911                        LADSPA_Descriptor_Function pfDescriptorFunction)
912 {
913   const LADSPA_Descriptor *desc;
914   int i,j;
915   
916   GstElementDetails *details;
917   GTypeInfo typeinfo = {
918       sizeof(GstLADSPAClass),
919       NULL,
920       NULL,
921       (GClassInitFunc)gst_ladspa_class_init,
922       NULL,
923       NULL,
924       sizeof(GstLADSPA),
925       0,
926       (GInstanceInitFunc)gst_ladspa_init,
927   };
928   GType type;
929   GstElementFactory *factory;
930
931   /* walk through all the plugins in this pluginlibrary */
932   i = 0;
933   while ((desc = pfDescriptorFunction(i++))) {
934     gchar *type_name;
935
936     /* construct the type */
937     type_name = g_strdup_printf("ladspa-%s",desc->Label);
938     g_strcanon (type_name, G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "-+", '-');
939     /* if it's already registered, drop it */
940     if (g_type_from_name(type_name)) {
941       g_free(type_name);
942       continue;
943     }
944     /* create the type now */
945     type = g_type_register_static(GST_TYPE_ELEMENT, type_name, &typeinfo, 0);
946
947     /* construct the element details struct */
948     details = g_new0(GstElementDetails,1);
949     details->longname = g_strdup(desc->Name);
950     details->klass = "Filter/Audio/LADSPA";
951     details->license = g_strdup (desc->Copyright);
952     details->description = details->longname;
953     details->version = g_strdup_printf("%ld",desc->UniqueID);
954     details->author = g_strdup(desc->Maker);
955     details->copyright = g_strdup(desc->Copyright);
956
957     /* register the plugin with gstreamer */
958     factory = gst_element_factory_new(type_name,type,details);
959     g_return_if_fail(factory != NULL);
960     gst_plugin_add_feature (ladspa_plugin, GST_PLUGIN_FEATURE (factory));
961
962     /* add this plugin to the hash */
963     g_hash_table_insert(ladspa_descriptors,
964                         GINT_TO_POINTER(type),
965                         (gpointer)desc);
966     
967
968     for (j=0;j<desc->PortCount;j++) {
969       if (LADSPA_IS_PORT_AUDIO(desc->PortDescriptors[j])) {
970         gchar *name = g_strdup((gchar *)desc->PortNames[j]);
971         g_strcanon (name, G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "-", '-');
972         /* the factories take ownership of the name */
973         if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[j]))
974           gst_element_factory_add_pad_template (factory, ladspa_sink_factory (name));
975         else
976           gst_element_factory_add_pad_template (factory, ladspa_src_factory (name));
977       }
978     }
979   }
980 }
981
982 static gboolean
983 plugin_init (GModule *module, GstPlugin *plugin)
984 {
985   GST_DEBUG_CATEGORY_INIT (ladspa_debug, "ladspa",
986                            GST_DEBUG_FG_GREEN | GST_DEBUG_BG_BLACK | GST_DEBUG_BOLD,
987                            "LADSPA");
988
989   ladspa_descriptors = g_hash_table_new(NULL,NULL);
990   parent_class = g_type_class_ref(GST_TYPE_ELEMENT);
991
992   ladspa_plugin = plugin;
993
994   LADSPAPluginSearch(ladspa_describe_plugin);
995
996   if (! gst_library_load ("gstbytestream"))
997     return FALSE;
998   
999   /* initialize dparam support library */
1000   gst_control_init(NULL,NULL);
1001   
1002   return TRUE;
1003 }
1004
1005 GstPluginDesc plugin_desc = {
1006   GST_VERSION_MAJOR,
1007   GST_VERSION_MINOR,
1008   "ladspa",
1009   plugin_init
1010 };