summaryrefslogtreecommitdiff
path: root/gst/freeverb/gstfreeverb.c
Commit message (Collapse)AuthorAgeFilesLines
* gst-plugins: allow per feature registrationStéphane Cerveau2021-04-111-2/+3
| | | | | | | | | | | | | Split plugin into features including dynamic types which can be indiviually registered during a static build. More details here: https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2110>
* freeverb: update for g_type_class_add_private() deprecationTim-Philipp Müller2018-08-191-8/+5
| | | | Not that the private struct is really needed here.
* Fix code indentationTim-Philipp Müller2018-04-221-2/+2
|
* docs: Port all docstring to gtk-doc markdownThibault Saunier2017-04-121-3/+3
|
* Explicitly define float constants as floatNirbheek Chauhan2016-10-271-11/+11
| | | | | | | | | | With MSVC, this gives the following warning: warning C4305: 'function': truncation from 'double' to 'gfloat' Apparently, MSVC does not figure out what type to use for constants based on the assignment. This warning is very spammy, so let's try to fix it.
* bad: use new gst_element_class_add_static_pad_template()Vineeth TM2016-03-241-4/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=763081
* plugins-bad: Fix example pipelinesVineeth TM2015-12-151-2/+2
| | | | | | | | 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
* Constify some static arrays everywhereSebastian Dröge2015-01-211-1/+1
|
* freeverb: Don't pass floats to abs() but instead cast them to ints firstSebastian Dröge2014-05-191-10/+10
| | | | | | gstfreeverb.c:781:29: error: using integer absolute value function 'abs' when argument is of floating point type [-Werror,-Wabsolute-value] if (abs (out_l2) > 0 || abs (out_r2) > 0)
* freeverb: Fix compiler warning caused by wrong format specifierSebastian Dröge2013-03-031-1/+1
|
* freeverb: remove channel-mask from capsStefan Sauer2013-02-151-8/+7
| | | | The channel-mask is only needed for channels>2 which we don't do.
* freeverb: port to 1.0Stefan Sauer2013-02-071-127/+100
|
* Fix FSF addressTim-Philipp Müller2012-11-041-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=687520
* Use gst_element_class_set_static_metadata()Tim-Philipp Müller2012-10-171-1/+1
| | | | | where possible. Avoids some string copies. Also re-indent some stuff. Also some indent fixes here and there.
* 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
|
* freeverb: add a freeverb portStefan Sauer2011-11-221-0/+972
Freeverb is a public domain reverb implementation. Port it as a gstreamer element and make use of gstreamer specific features (gap aware, disconts, controller, ...).