summaryrefslogtreecommitdiff
path: root/ext/ladspa
Commit message (Collapse)AuthorAgeFilesLines
* ladspa: simplify registry cache structure creationStefan Sauer2016-06-151-2/+1
| | | | Create and fill structure in one go.
* ladspa: use _OBJECT log variants for plugin_initStefan Sauer2016-05-151-14/+13
| | | | Also trim leading whitespae.
* ladspa: code cleanupStefan Sauer2016-05-102-14/+11
| | | | Whitespace cleanup and unify codeing style.
* ladspa: simplify the codeStefan Sauer2016-05-101-9/+5
| | | | Remove a local var and just use the parameter value.
* ladspa: Fix some debugsThibault Saunier2016-02-171-4/+3
|
* plugins-bad: Fix example pipelinesVineeth TM2015-12-151-8/+8
| | | | | | | | rename gst-launch --> gst-launch-1.0 replace old elements with new elements(ffmpegcolorspace -> videoconvert, ffenc_** -> avenc_**) fix caps in examples https://bugzilla.gnome.org/show_bug.cgi?id=759432
* ladspa: fix up broken patch mergeTim-Philipp Müller2014-08-101-3/+0
| | | | Sorry, should've been commit --amend
* ladspa: Unref pad template caps after usageSebastian Rasmussen2014-08-101-0/+3
| | | | Fixes https://bugzilla.gnome.org/show_bug.cgi?id=734519
* ladspa: Unref pad template caps after usageSebastian Rasmussen2014-08-101-0/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=734519
* ladspa: remove duplicate assignmentVincent Penquerc'h2014-04-091-2/+1
| | | | Coverity 1139706
* ladspa: initialize debug category earlierDavid Schleef2013-07-261-2/+2
| | | | You know, before it's used.
* ladspa: fix typos in launch examplesStefan Sauer2013-05-281-10/+7
|
* ladspa: use the registry cache for plugin detailsStefan Sauer2013-05-2810-180/+212
| | | | | | Split the introspection and registration part. This way we only need to open all plugins when updating the registry. When reading the registry we can register the elements entierly from the cache.
* ladspa: Fix compilation issue when lrdf is enabledNicolas Dufresne2013-05-141-8/+10
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=700328
* ladspa: sync controlled parames in filters and sinksStefan Sauer2013-05-032-20/+15
|
* ladspa: Add $(GMODULE_NO_EXPORT_LIBS) for gmoduleSebastian Dröge2013-05-031-1/+2
|
* ladspa: improved port to gstreamer 1.0Juan Manuel Borges Caño2013-05-0311-739/+2863
| | | | Fixes: #698927
* gst: Add better support for static pluginsSebastian Dröge2013-04-151-1/+1
|
* Fix FSF addressTim-Philipp Müller2012-11-042-4/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=687520
* replace gst_element_class_set_details_simple with gst_element_class_set_metadataMark Nauwelaerts2012-09-141-1/+1
|
* gst: Update for GST_PLUGIN_DEFINE() API changesSebastian Dröge2012-04-051-1/+1
|
* gst: Update versioningSebastian Dröge2012-04-041-2/+2
|
* controller: port to new controller location and apiStefan Sauer2011-11-042-6/+2
|
* ladspa,lv2: don't fail in plugin_init when having 0 elementsStefan Kost2010-04-261-1/+6
| | | | If we fail, the plugin scanner will blacklist us.
* ladspa: Fix compiler warningsSebastian Dröge2010-03-221-2/+2
|
* Add -WundefBenjamin Otte2010-03-221-8/+8
| | | | and fix the warnings
* gst_element_class_set_details => gst_element_class_set_details_simpleBenjamin Otte2010-03-181-22/+19
|
* signalprocessor,lv2,ladspa: move sample-rate to baseclassStefan Kost2010-02-011-13/+3
| | | | We need the sample-rate in baseclass for upcomming timestamp changes.
* ladspa: simplify property registrationStefan Kost2010-01-311-14/+9
| | | | Don't do checking cast for each parameter. Use a running index.
* ladspa: lookup GQuark just once and not for each plugin+1Stefan Kost2010-01-311-4/+5
|
* ladspa/lv2: link and init to gst-controllerStefan Kost2010-01-312-1/+4
|
* ladspa: only use g_return_val_if_fail for checking pre-conditionsStefan Kost2009-11-191-3/+7
| | | | g_return_* can be disabled. Still we want to check for failed instance creation.
* ladspa: remove left-over commentStefan Kost2009-11-191-2/+0
|
* signalprocessor: change _setup to pass whole caps and not just sampling_rateStefan Kost2009-11-191-4/+15
| | | | | | This allows to get rid of the sampling_rate variable in the base-class. Also now subclasses can modify the caps to actualy negotiate. This is needed to e.g. set audio-channel positions.
* signalprocessor: Use correct CFLAGS for the signalprocessor headers in ↵Yaakov Selkowitz2009-11-181-1/+1
| | | | | | | | | LV2/LADSPA This makes sure that the headers from the source tree are taken and not accidentially installed system headers in the case of builddir!=srcdir. Fixes bug #602161.
* signalprocessor: don't set channel positions in template-caps, Fixes #601775Stefan Kost2009-11-161-3/+2
| | | | | | Revert the changes that added audio positions to template caps. We have an un- fortunate limitation in core that does not allow to do it. Keep a few things commented out, so that the channel position can later on be set in setcaps.
* ladspa: don't reference freed pointer when building portnamesStefan Kost2009-10-241-1/+4
|
* Multi-channel support with channel positions.Dave Robillard2009-09-171-2/+3
| | | | | | | This queries port roles from the LV2 data and converts it into GStreamer channel positions. This should allow any type of multi-channel plugin (including beyond stereo, e.g. surround) to work fine in GStreamer, and with elements that require channel positions to be explicitly stated.
* Fix typo in LADSPA element documentation.Dave Robillard2009-09-171-1/+1
|
* Working multi-channel pads for LV2 plugins.Dave Robillard2009-09-171-2/+2
|
* signalprocessor: Fix various build/dist issuesSebastian Dröge2009-09-101-1/+1
| | | | | | | | Install the headers, version the library with @GST_MAJORMINOR@, add all required libraries to _LIBADD instead of _LDFLAGS, and add GST_*_LDFLAGS to _LDFLAGS. Fixes bug #594715.
* docs: add docs for ladspa and update plugin docsStefan Kost2009-07-221-1/+10
| | | | Add also inspect files for lv2 and frei0r (no docs yet).
* signalprocessor: use $(top_builddir) instead of relative pathsStefan Kost2009-06-222-3/+9
|
* Working LV2 plugin discovery.Dave Robillard2009-06-224-1152/+4
| | | | | | | - Separate gstsignalprocessor into a separate library (not sure if this is in the right place, but it works for now anyway) - Create LV2 element based on LADSPA element, port most discovery functionality
* Fix inconsistent style (trivial test commit).Dave Robillard2009-06-221-1/+1
|
* ladspa: comment signalprocessor class more and do minor code cleanupsStefan Kost2009-03-252-51/+48
|
* ladspa: fix compilation when LRDF is missingWim Taymans2009-03-061-1/+4
| | | | --
* ladspa: remove -ldl as we now use glibs gmodule.Stefan Kost2009-03-051-1/+1
|
* ladspa: add initial liblrdf support.Stefan Kost2009-03-052-11/+162
| | | | Get classification from rdf metadata.
* ladspa: add LIBDIR/ladspa to search path and make path more portableStefan Kost2009-03-041-9/+93
| | | | | | Use glib defines for searchpath separators. Filter searchpath to avoid scanning path entries twice. Fix the return in ladspa_plugin_directory_search to return wheter we found a plugin.