4 * Written by Ivo van Poorten <ivop@euronet.nl>
5 * Copyright (C) 2004, 2005
7 * This file is part of MPlayer.
9 * MPlayer is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * MPlayer is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 /* ------------------------------------------------------------------------- */
39 /* ------------------------------------------------------------------------- */
45 /* ------------------------------------------------------------------------- */
47 /* Filter specific data */
49 typedef struct af_ladspa_s
51 int status
; /**< Status of the filter.
52 * Either AF_OK or AF_ERROR
53 * Because MPlayer re-inits audio filters that
54 * _clearly_ returned AF_ERROR anyway, I use this
55 * in play() to skip the processing and return
59 int activated
; /**< 0 or 1. Activate LADSPA filters only once, even
60 * if the buffers get resized, to avoid a stuttering
67 char *myname
; /**< It's easy to have a concatenation of file and label */
70 const LADSPA_Descriptor
*plugin_descriptor
;
81 int *inputcontrolsmap
; /**< Map input port number [0-] to actual port */
85 int *outputcontrolsmap
;
86 float *outputcontrols
;
88 int nch
; /**< number of channels */
92 LADSPA_Handle
*chhandles
;
96 /* ------------------------------------------------------------------------- */
98 static int af_open(af_instance_t
*af
);
99 static int af_ladspa_malloc_failed(char*);
101 /* ------------------------------------------------------------------------- */
105 af_info_t af_info_ladspa
= {
106 "LADSPA plugin loader",
114 /* ------------------------------------------------------------------------- */
116 /* By lack of a better word (in my vocabulary) this is called 'parse'.
117 * Feel free to suggest an alternative.
120 /** \brief Check for inputs, outputs and controls of a given filter.
122 * This function counts and checks all input, output and control ports
123 * of the filter that was loaded. If it turns out to be a valid
124 * filter for MPlayer use, it prints out a list of all controls and
125 * the corresponding range of its value at message level MSGL_V.
127 * \param setup Current setup of the filter. Must have its
128 * plugin_descriptor set!
130 * \return Returns AF_OK if it has a valid input/output/controls
131 * configuration. Else, it returns AF_ERROR.
134 static int af_ladspa_parse_plugin(af_ladspa_t
*setup
) {
136 const LADSPA_Descriptor
*pdes
= setup
->plugin_descriptor
;
137 LADSPA_PortDescriptor d
;
138 LADSPA_PortRangeHint hint
;
140 if (!setup
->libhandle
)
141 return AF_ERROR
; /* only call parse after a succesful load */
142 if (!setup
->plugin_descriptor
)
143 return AF_ERROR
; /* same as above */
147 setup
->nports
= pdes
->PortCount
;
149 /* allocate memory for all inputs/outputs/controls */
151 setup
->inputs
= calloc(setup
->nports
, sizeof(int));
152 if (!setup
->inputs
) return af_ladspa_malloc_failed(setup
->myname
);
154 setup
->outputs
= calloc(setup
->nports
, sizeof(int));
155 if (!setup
->outputs
) return af_ladspa_malloc_failed(setup
->myname
);
157 setup
->inputcontrolsmap
= calloc(setup
->nports
, sizeof(int));
158 if (!setup
->inputcontrolsmap
) return af_ladspa_malloc_failed(setup
->myname
);
160 setup
->inputcontrols
= calloc(setup
->nports
, sizeof(float));
161 if (!setup
->inputcontrols
) return af_ladspa_malloc_failed(setup
->myname
);
163 setup
->outputcontrolsmap
= calloc(setup
->nports
, sizeof(int));
164 if (!setup
->outputcontrolsmap
) return af_ladspa_malloc_failed(setup
->myname
);
166 setup
->outputcontrols
= calloc(setup
->nports
, sizeof(float));
167 if (!setup
->outputcontrols
) return af_ladspa_malloc_failed(setup
->myname
);
169 /* set counts to zero */
173 setup
->ninputcontrols
= 0;
174 setup
->noutputcontrols
= 0;
176 /* check all ports, see what type it is and set variables according to
180 for (p
=0; p
<setup
->nports
; p
++) {
181 d
= pdes
->PortDescriptors
[p
];
183 if (LADSPA_IS_PORT_AUDIO(d
)) {
184 if (LADSPA_IS_PORT_INPUT(d
)) {
185 setup
->inputs
[setup
->ninputs
] = p
;
187 } else if (LADSPA_IS_PORT_OUTPUT(d
)) {
188 setup
->outputs
[setup
->noutputs
] = p
;
193 if (LADSPA_IS_PORT_CONTROL(d
)) {
194 if (LADSPA_IS_PORT_INPUT(d
)) {
195 setup
->inputcontrolsmap
[setup
->ninputcontrols
] = p
;
196 setup
->ninputcontrols
++;
197 /* set control to zero. set values after reading the rest
198 * of the suboptions and check LADSPA_?_HINT's later.
200 setup
->inputcontrols
[p
] = 0.0f
;
201 } else if (LADSPA_IS_PORT_OUTPUT(d
)) {
202 /* read and handle these too, otherwise filters that have them
205 setup
->outputcontrolsmap
[setup
->noutputcontrols
]=p
;
206 setup
->noutputcontrols
++;
207 setup
->outputcontrols
[p
] = 0.0f
;
213 if (setup
->ninputs
== 0) {
214 mp_msg(MSGT_AFILTER
, MSGL_WARN
, "%s: %s\n", setup
->myname
,
215 _("WARNING! This LADSPA plugin has no audio inputs.\n The incoming audio signal will be lost."));
216 } else if (setup
->ninputs
== 1) {
217 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: this is a mono effect\n", setup
->myname
);
218 } else if (setup
->ninputs
== 2) {
219 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: this is a stereo effect\n", setup
->myname
);
221 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: this is a %i-channel effect, "
222 "support is experimental\n", setup
->myname
, setup
->ninputs
);
225 if (setup
->noutputs
== 0) {
226 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n", setup
->myname
,
227 _("This LADSPA plugin has no audio outputs."));
231 if (setup
->noutputs
!= setup
->ninputs
) {
232 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n", setup
->myname
,
233 _("The number of audio inputs and audio outputs of the LADSPA plugin differ."));
237 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: this plugin has %d input control(s)\n",
238 setup
->myname
, setup
->ninputcontrols
);
240 /* Print list of controls and its range of values it accepts */
242 for (i
=0; i
<setup
->ninputcontrols
; i
++) {
243 p
= setup
->inputcontrolsmap
[i
];
244 hint
= pdes
->PortRangeHints
[p
];
245 mp_msg(MSGT_AFILTER
, MSGL_V
, " --- %d %s [", i
, pdes
->PortNames
[p
]);
247 if (LADSPA_IS_HINT_BOUNDED_BELOW(hint
.HintDescriptor
)) {
248 mp_msg(MSGT_AFILTER
, MSGL_V
, "%0.2f , ", hint
.LowerBound
);
250 mp_msg(MSGT_AFILTER
, MSGL_V
, "... , ");
253 if (LADSPA_IS_HINT_BOUNDED_ABOVE(hint
.HintDescriptor
)) {
254 mp_msg(MSGT_AFILTER
, MSGL_V
, "%0.2f]\n", hint
.UpperBound
);
256 mp_msg(MSGT_AFILTER
, MSGL_V
, "...]\n");
264 /* ------------------------------------------------------------------------- */
266 /* This function might "slightly" look like dlopenLADSPA in the LADSPA SDK :-)
267 * But, I changed a few things, because imho it was broken. It did not support
268 * relative paths, only absolute paths that start with a /
269 * I think ../../some/dir/foobar.so is just as valid. And if one wants to call
270 * his library '...somename...so' he's crazy, but it should be allowed.
271 * So, search the path first, try plain *filename later.
272 * Also, try adding .so first! I like the recursion the SDK did, but it's
273 * better the other way around. -af ladspa=cmt:amp_stereo:0.5 is easier to type
274 * than -af ladspa=cmt.so:amp_stereo:0.5 :-))
277 /** \brief dlopen() wrapper
279 * This is a wrapper around dlopen(). It tries various variations of the
280 * filename (with or without the addition of the .so extension) in various
281 * directories specified by the LADSPA_PATH environment variable. If all fails
282 * it tries the filename directly as an absolute path to the library.
284 * \param filename filename of the library to load.
285 * \param flag see dlopen(3) for a description of the flags.
287 * \return returns a pointer to the loaded library on success, or
288 * NULL if it fails to load.
291 static void* mydlopen(const char *filename
, int flag
) {
293 const char *end
, *start
, *ladspapath
;
294 int endsinso
, needslash
;
298 #if defined(__MINGW32__) || defined(__CYGWIN__)
299 /* For Windows there's only absolute path support.
300 * If you have a Windows machine, feel free to fix this.
301 * (path separator, shared objects extension, et cetera). */
302 mp_msg(MSGT_AFILTER
, MSGL_V
, "\ton windows, only absolute pathnames "
304 mp_msg(MSGT_AFILTER
, MSGL_V
, "\ttrying %s\n", filename
);
305 return dlopen(filename
, flag
);
308 filenamelen
= strlen(filename
);
312 endsinso
= (strcmp(filename
+filenamelen
-3, ".so") == 0);
314 buf
=malloc(filenamelen
+4);
315 strcpy(buf
, filename
);
317 result
=mydlopen(buf
, flag
);
324 ladspapath
=getenv("LADSPA_PATH");
329 while (*start
!= '\0') {
331 while ( (*end
!= ':') && (*end
!= '\0') )
334 buf
=malloc(filenamelen
+ 2 + (end
-start
) );
336 strncpy(buf
, start
, end
-start
);
339 if (*(end
-1) != '/') {
341 buf
[end
-start
] = '/';
343 strcpy(buf
+needslash
+(end
-start
), filename
);
345 mp_msg(MSGT_AFILTER
, MSGL_V
, "\ttrying %s\n", buf
);
346 result
=dlopen(buf
, flag
);
355 } /* end while there's still more in the path */
356 } /* end if there's a ladspapath */
358 /* last resort, just open it again, so the dlerror() message is correct */
359 mp_msg(MSGT_AFILTER
, MSGL_V
, "\ttrying %s\n", filename
);
360 return dlopen(filename
,flag
);
363 /* ------------------------------------------------------------------------- */
365 /** \brief Load a LADSPA Plugin
367 * This function loads the LADSPA plugin specified by the file and label
368 * that are present in the setup variable. First, it loads the library.
369 * If it fails, it returns AF_ERROR. If not, it continues to look for the
370 * specified label. If it finds it, it sets the plugin_descriptor inside
371 * setup and returns AF_OK. If it doesn't, it returns AF_ERROR. Special case
372 * is a label called 'help'. In that case, it prints a list of all available
373 * labels (filters) in the library specified by file.
375 * \param setup Current setup of the filter. Contains filename and label.
377 * \return Either AF_ERROR or AF_OK, depending on the success of the operation.
380 static int af_ladspa_load_plugin(af_ladspa_t
*setup
) {
381 const LADSPA_Descriptor
*ladspa_descriptor
;
382 LADSPA_Descriptor_Function descriptor_function
;
386 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: loading ladspa plugin library %s\n",
387 setup
->myname
, setup
->file
);
389 setup
->libhandle
= mydlopen(setup
->file
, RTLD_NOW
);
391 if (!setup
->libhandle
) {
392 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s %s\n\t%s\n", setup
->myname
,
393 _("failed to load"), setup
->file
, dlerror() );
397 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: library found.\n", setup
->myname
);
399 /* find descriptor function */
401 descriptor_function
= (LADSPA_Descriptor_Function
) dlsym (setup
->libhandle
,
402 "ladspa_descriptor");
404 if (!descriptor_function
) {
405 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n\t%s\n", setup
->myname
,
406 _("Couldn't find ladspa_descriptor() function in the specified library file."), dlerror());
410 /* if label == help, list all labels in library and exit */
412 if (strcmp(setup
->label
, "help") == 0) {
413 mp_msg(MSGT_AFILTER
, MSGL_INFO
, "%s: %s %s:\n", setup
->myname
,
414 _("available labels in"), setup
->file
);
416 ladspa_descriptor
= descriptor_function(i
);
417 if (ladspa_descriptor
== NULL
) {
420 mp_msg(MSGT_AFILTER
, MSGL_INFO
, " %-16s - %s (%lu)\n",
421 ladspa_descriptor
->Label
,
422 ladspa_descriptor
->Name
,
423 ladspa_descriptor
->UniqueID
);
427 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: looking for label\n", setup
->myname
);
429 /* find label in library */
431 ladspa_descriptor
= descriptor_function(i
);
432 if (ladspa_descriptor
== NULL
) {
433 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n", setup
->myname
,
434 _("Couldn't find label in plugin library."));
437 if (strcmp(ladspa_descriptor
->Label
, setup
->label
) == 0) {
438 setup
->plugin_descriptor
= ladspa_descriptor
;
439 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: %s found\n", setup
->myname
,
448 /* ------------------------------------------------------------------------- */
450 /** \brief Print a malloc() failed error message.
452 * Generic function which can be called if a call to malloc(), calloc(),
453 * strdup(), et cetera, failed. It prints a message to the console and
459 static int af_ladspa_malloc_failed(char *myname
) {
460 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s", myname
, "Memory allocation failed.\n");
464 /* ------------------------------------------------------------------------- */
466 /** \brief Controls the filter.
468 * Control the behaviour of the filter.
471 * CONTROL_REINIT Sets the af structure with proper values for number
472 * of channels, rate, format, et cetera.
473 * CONTROL_COMMAND_LINE Parses the suboptions given to this filter
474 * through arg. It first parses the filename and
475 * the label. After that, it loads the filter
476 * and finds out its proprties. Then in continues
477 * parsing the controls given on the commandline,
480 * \param af Audio filter instance
481 * \param cmd The command to execute
482 * \param arg Arguments to the command
484 * \return Either AF_ERROR or AF_OK, depending on the succes of the
488 static int control(struct af_instance_s
*af
, int cmd
, void *arg
) {
489 af_ladspa_t
*setup
= (af_ladspa_t
*) af
->setup
;
494 case AF_CONTROL_REINIT
:
495 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: (re)init\n", setup
->myname
);
497 if (!arg
) return AF_ERROR
;
499 /* accept FLOAT, let af_format do conversion */
501 af
->data
->rate
= ((af_data_t
*)arg
)->rate
;
502 af
->data
->nch
= ((af_data_t
*)arg
)->nch
;
503 af
->data
->format
= AF_FORMAT_FLOAT_NE
;
506 /* arg->len is not set here yet, so init of buffers and connecting the
507 * filter, has to be done in play() :-/
510 return af_test_output(af
, (af_data_t
*)arg
);
511 case AF_CONTROL_COMMAND_LINE
: {
515 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: parse suboptions\n", setup
->myname
);
517 /* suboption parser here!
518 * format is (ladspa=)file:label:controls....
522 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n", setup
->myname
,
523 _("No suboptions specified."));
527 buf
= malloc(strlen(line
)+1);
528 if (!buf
) return af_ladspa_malloc_failed(setup
->myname
);
532 sscanf(line
, "%[^:]", buf
);
533 if (buf
[0] == '\0') {
534 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n", setup
->myname
,
535 _("No library file specified."));
540 setup
->file
= strdup(buf
);
541 if (!setup
->file
) return af_ladspa_malloc_failed(setup
->myname
);
542 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: file --> %s\n", setup
->myname
,
544 if (*line
!= '\0') line
++; /* read ':' */
548 sscanf(line
, "%[^:]", buf
);
549 if (buf
[0] == '\0') {
550 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n", setup
->myname
,
551 _("No filter label specified."));
556 setup
->label
= strdup(buf
);
557 if (!setup
->label
) return af_ladspa_malloc_failed(setup
->myname
);
558 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: label --> %s\n", setup
->myname
,
560 /* if (*line != '0') line++; */ /* read ':' */
562 free(buf
); /* no longer needed */
564 /* set new setup->myname */
567 setup
->myname
= calloc(strlen(af_info_ladspa
.name
)+strlen(setup
->file
)+
568 strlen(setup
->label
)+6, 1);
569 snprintf(setup
->myname
, strlen(af_info_ladspa
.name
)+
570 strlen(setup
->file
)+strlen(setup
->label
)+6, "%s: (%s:%s)",
571 af_info_ladspa
.name
, setup
->file
, setup
->label
);
575 if ( af_ladspa_load_plugin(setup
) != AF_OK
)
578 /* see what inputs, outputs and controls this plugin has */
579 if ( af_ladspa_parse_plugin(setup
) != AF_OK
)
582 /* ninputcontrols is set by now, read control values from arg */
584 for(i
=0; i
<setup
->ninputcontrols
; i
++) {
585 if (!line
|| *line
!= ':') {
586 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n", setup
->myname
,
587 _("Not enough controls specified on the command line."));
591 r
= sscanf(line
, "%f", &val
);
593 mp_msg(MSGT_AFILTER
, MSGL_ERR
, "%s: %s\n", setup
->myname
,
594 _("Not enough controls specified on the command line."));
597 setup
->inputcontrols
[setup
->inputcontrolsmap
[i
]] = val
;
598 line
= strchr(line
, ':');
601 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: input controls: ", setup
->myname
);
602 for(i
=0; i
<setup
->ninputcontrols
; i
++) {
603 mp_msg(MSGT_AFILTER
, MSGL_V
, "%0.4f ",
604 setup
->inputcontrols
[setup
->inputcontrolsmap
[i
]]);
606 mp_msg(MSGT_AFILTER
, MSGL_V
, "\n");
608 /* check boundaries of inputcontrols */
610 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: checking boundaries of input controls\n",
612 for(i
=0; i
<setup
->ninputcontrols
; i
++) {
613 int p
= setup
->inputcontrolsmap
[i
];
614 LADSPA_PortRangeHint hint
=
615 setup
->plugin_descriptor
->PortRangeHints
[p
];
616 val
= setup
->inputcontrols
[p
];
618 if (LADSPA_IS_HINT_BOUNDED_BELOW(hint
.HintDescriptor
) &&
619 val
< hint
.LowerBound
) {
620 mp_tmsg(MSGT_AFILTER
, MSGL_ERR
, "%s: Input control #%d is below lower boundary of %0.4f.\n",
621 setup
->myname
, i
, hint
.LowerBound
);
624 if (LADSPA_IS_HINT_BOUNDED_ABOVE(hint
.HintDescriptor
) &&
625 val
> hint
.UpperBound
) {
626 mp_tmsg(MSGT_AFILTER
, MSGL_ERR
, "%s: Input control #%d is above upper boundary of %0.4f.\n",
627 setup
->myname
, i
, hint
.UpperBound
);
631 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: all controls have sane values\n",
635 setup
->status
= AF_OK
;
643 /* ------------------------------------------------------------------------- */
645 /** \brief Uninitialise the LADSPA Plugin Loader filter.
647 * This function deactivates the plugin(s), cleans up, frees all allocated
650 * \return No return value.
653 static void uninit(struct af_instance_s
*af
) {
658 af_ladspa_t
*setup
= (af_ladspa_t
*) af
->setup
;
659 const LADSPA_Descriptor
*pdes
= setup
->plugin_descriptor
;
662 mp_msg(MSGT_AFILTER
, MSGL_V
, "%s: cleaning up\n", setup
->myname
);
666 if (setup
->chhandles
) {
667 for(i
=0; i
<setup
->nch
; i
+=setup
->ninputs
) {
668 if (pdes
->deactivate
) pdes
->deactivate(setup
->chhandles
[i
]);
669 if (pdes
->cleanup
) pdes
->cleanup(setup
->chhandles
[i
]);
671 free(setup
->chhandles
);
676 free(setup
->inputcontrolsmap
);
677 free(setup
->inputcontrols
);
678 free(setup
->outputcontrolsmap
);
679 free(setup
->outputcontrols
);
681 free(setup
->outputs
);
684 for(i
=0; i
<setup
->nch
; i
++)
685 free(setup
->inbufs
[i
]);
689 if (setup
->outbufs
) {
690 for(i
=0; i
<setup
->nch
; i
++)
691 free(setup
->outbufs
[i
]);
692 free(setup
->outbufs
);
695 if (setup
->libhandle
)
696 dlclose(setup
->libhandle
);
703 /* ------------------------------------------------------------------------- */
705 /** \brief Process chunk of audio data through the selected LADSPA Plugin.
707 * \param af Pointer to audio filter instance
708 * \param data Pointer to chunk of audio data
710 * \return Either AF_ERROR or AF_OK
713 static af_data_t
* play(struct af_instance_s
*af
, af_data_t
*data
) {
714 af_ladspa_t
*setup
= af
->setup
;
715 const LADSPA_Descriptor
*pdes
= setup
->plugin_descriptor
;
716 float *audio
= (float*)data
->audio
;
717 int nsamples
= data
->len
/4; /* /4 because it's 32-bit float */
719 int rate
= data
->rate
;
722 if (setup
->status
!=AF_OK
)
725 /* See if it's the first call. If so, setup inbufs/outbufs, instantiate
726 * plugin, connect ports and activate plugin
729 /* 2004-12-07: Also check if the buffersize has to be changed!
730 * data->len is not constant per se! re-init buffers.
733 if ( (setup
->bufsize
!= nsamples
/nch
) || (setup
->nch
!= nch
) ) {
735 /* if setup->nch==0, it's the first call, if not, something has
736 * changed and all previous mallocs have to be freed
739 if (setup
->nch
!= 0) {
740 mp_msg(MSGT_AFILTER
, MSGL_DBG3
, "%s: bufsize change; free old buffer\n",
744 for(i
=0; i
<setup
->nch
; i
++)
745 free(setup
->inbufs
[i
]);
749 for(i
=0; i
<setup
->nch
; i
++)
750 free(setup
->outbufs
[i
]);
751 free(setup
->outbufs
);
753 } /* everything is freed */
755 setup
->bufsize
= nsamples
/nch
;
758 setup
->inbufs
= calloc(nch
, sizeof(float*));
759 setup
->outbufs
= calloc(nch
, sizeof(float*));
761 mp_msg(MSGT_AFILTER
, MSGL_DBG3
, "%s: bufsize = %d\n",
762 setup
->myname
, setup
->bufsize
);
764 for(i
=0; i
<nch
; i
++) {
765 setup
->inbufs
[i
] = calloc(setup
->bufsize
, sizeof(float));
766 setup
->outbufs
[i
] = calloc(setup
->bufsize
, sizeof(float));
769 /* only on the first call, there are no handles. */
771 if (!setup
->chhandles
) {
772 setup
->chhandles
= calloc(nch
, sizeof(LADSPA_Handle
));
775 * for stereo effects, create one handle for two channels
778 for(i
=0; i
<nch
; i
++) {
780 if (i
% setup
->ninputs
) { /* stereo effect */
781 /* copy the handle from previous channel */
782 setup
->chhandles
[i
] = setup
->chhandles
[i
-1];
786 setup
->chhandles
[i
] = pdes
->instantiate(pdes
, rate
);
790 /* connect input/output ports for each channel/filter instance
792 * always (re)connect ports
795 for(i
=0; i
<nch
; i
++) {
796 pdes
->connect_port(setup
->chhandles
[i
],
797 setup
->inputs
[i
% setup
->ninputs
],
799 pdes
->connect_port(setup
->chhandles
[i
],
800 setup
->outputs
[i
% setup
->ninputs
],
803 /* connect (input) controls */
805 for (p
=0; p
<setup
->nports
; p
++) {
806 LADSPA_PortDescriptor d
= pdes
->PortDescriptors
[p
];
807 if (LADSPA_IS_PORT_CONTROL(d
)) {
808 if (LADSPA_IS_PORT_INPUT(d
)) {
809 pdes
->connect_port(setup
->chhandles
[i
], p
,
810 &(setup
->inputcontrols
[p
]) );
812 pdes
->connect_port(setup
->chhandles
[i
], p
,
813 &(setup
->outputcontrols
[p
]) );
818 /* Activate filter (if it isn't already :) ) */
820 if (pdes
->activate
&& !setup
->activated
&& i
% setup
->ninputs
== 0)
821 pdes
->activate(setup
->chhandles
[i
]);
823 } /* All channels/filters done! except for... */
824 setup
->activated
= 1;
826 /* Stereo effect with one channel left. Use same buffer for left
827 * and right. connect it to the second port.
830 for (p
= i
; p
% setup
->ninputs
; p
++) {
831 pdes
->connect_port(setup
->chhandles
[i
-1],
832 setup
->inputs
[p
% setup
->ninputs
],
834 pdes
->connect_port(setup
->chhandles
[i
-1],
835 setup
->outputs
[p
% setup
->ninputs
],
836 setup
->outbufs
[i
-1]);
839 } /* setup for first call/change of bufsize is done.
840 * normal playing routine follows...
843 /* Right now, I use a separate input and output buffer.
844 * I could change this to in-place processing (inbuf==outbuf), but some
845 * ladspa filters are broken and are not able to handle that. This seems
846 * fast enough, so unless somebody complains, it stays this way :)
851 for (p
=0; p
<setup
->bufsize
; p
++) {
852 for (i
=0; i
<nch
; i
++) {
853 setup
->inbufs
[i
][p
] = audio
[p
*nch
+ i
];
859 for (i
=0; i
<nch
; i
+=setup
->ninputs
) {
860 pdes
->run(setup
->chhandles
[i
], setup
->bufsize
);
863 /* Extract outbufs */
865 for (p
=0; p
<setup
->bufsize
; p
++) {
866 for (i
=0; i
<nch
; i
++) {
867 audio
[p
*nch
+ i
] = setup
->outbufs
[i
][p
];
876 /* ------------------------------------------------------------------------- */
878 /** \brief Open LADSPA Plugin Loader Filter
880 * \param af Audio Filter instance
882 * \return Either AF_ERROR or AF_OK
885 static int af_open(af_instance_t
*af
) {
892 af
->data
= calloc(1, sizeof(af_data_t
));
893 if (af
->data
== NULL
)
894 return af_ladspa_malloc_failed((char*)af_info_ladspa
.name
);
896 af
->setup
= calloc(1, sizeof(af_ladspa_t
));
897 if (af
->setup
== NULL
) {
900 return af_ladspa_malloc_failed((char*)af_info_ladspa
.name
);
903 ((af_ladspa_t
*)af
->setup
)->status
= AF_ERROR
; /* will be set to AF_OK if
904 * all went OK and play()
908 ((af_ladspa_t
*)af
->setup
)->myname
= strdup(af_info_ladspa
.name
);
909 if (!((af_ladspa_t
*)af
->setup
)->myname
)
910 return af_ladspa_malloc_failed((char*)af_info_ladspa
.name
);
915 /* ------------------------------------------------------------------------- */