summaryrefslogtreecommitdiff
path: root/gst/gaudieffects/gstdilate.c
AgeCommit message (Collapse)AuthorFilesLines
2021-04-11gst-plugins: allow per feature registrationStéphane Cerveau1-13/+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>
2019-11-05documentation: fixed a heap o' typosAaron Boxer1-1/+1
2017-04-12docs: Port all docstring to gtk-doc markdownThibault Saunier1-3/+3
2016-03-24bad: use new gst_element_class_add_static_pad_template()Vineeth TM1-4/+4
https://bugzilla.gnome.org/show_bug.cgi?id=763081
2015-12-15plugins-bad: Fix example pipelinesVineeth TM1-1/+1
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
2015-04-22gaudi: remove unused propertyLuis de Bethencourt1-12/+0
2015-03-19gaudieffects: update copyright dates of dilateLuis de Bethencourt1-1/+1
2015-03-19gaudieffects: factorize transform code of dilateLuis de Bethencourt1-111/+54
2015-01-12gaudieffects: stored value is overwrittenLuis de Bethencourt1-1/+0
Value from left_luminance is assigned to out_luminance here, but that stored value is not used before it is overwritten in the next cycle of the loop. Removing assignation. CID #1226473
2014-10-30gaudieffects: stored value is overwrittenLuis de Bethencourt1-1/+0
Value from left_luminance is assigned to out_luminance here, but that stored value is not used before it is overwritten in the next cycle of the loop. Removing assignation. CID #1226473
2012-11-04Fix FSF addressTim-Philipp Müller1-2/+2
https://bugzilla.gnome.org/show_bug.cgi?id=687520
2012-10-17Use gst_element_class_set_static_metadata()Tim-Philipp Müller1-1/+1
where possible. Avoids some string copies. Also re-indent some stuff. Also some indent fixes here and there.
2012-09-14replace gst_element_class_set_details_simple with gst_element_class_set_metadataMark Nauwelaerts1-1/+1
2012-05-16gaudieffects: example pipelines with videoconvertLuis de Bethencourt1-1/+1
2012-05-10gaudieffects: consistency in templates nameLuis de Bethencourt1-4/+6
2012-05-09gaudieffects: port dilate to GstVideoFilterLuis de Bethencourt1-46/+26
2012-05-09gaudieffects: port dilate to 0.11Luis de Bethencourt1-35/+39
2012-05-09controller: port to new controller location and apiLuis de Bethencourt1-1/+0
2011-11-04controller: port to new controller location and apiStefan Sauer1-1/+1
2010-10-28gaudieffects: made filter parameters dynamic and controllableLuis de Bethencourt1-64/+163
2010-10-19various (gst): add missing G_PARAM_STATIC_STRINGS flagsStefan Kost1-1/+1
Canonicalize property names as needed.
2010-08-12gaudieffects: Mark inline functions as static inlineOlivier Crête1-2/+2
Otherwise it fails to correctly link them in some cases. https://bugzilla.gnome.org/show_bug.cgi?id=626670
2010-07-28gaudieffects: fix structure names to comply with the plugin moving guidelinesTim-Philipp Müller1-7/+7
2010-07-20gaudieffects: Adds new plugin 'gaudieffects'Luis de Bethencourt1-0/+342
Adds the new 'gaudieffects' plugin, originally found here: http://github.com/luisbg/gaudi_effects Contains the following video effect elements: burn, chromium, dilate, dodge, exclusion and solarize. Thanks to Jan Schmidt for the reviewing and refactoring