summaryrefslogtreecommitdiff
path: root/gst/gaudieffects/gstsolarize.c
Commit message (Collapse)AuthorAgeFilesLines
* gst-plugins: allow per feature registrationStéphane Cerveau2021-04-111-14/+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>
* documentation: fixed a heap o' typosAaron Boxer2019-11-051-1/+1
|
* docs: Port all docstring to gtk-doc markdownThibault Saunier2017-04-121-3/+3
|
* bad: use new gst_element_class_add_static_pad_template()Vineeth TM2016-03-241-4/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=763081
* plugins-bad: Fix example pipelinesVineeth TM2015-12-151-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
* gaudi: remove floor variable in solarizeLuis de Bethencourt2015-04-221-5/+0
| | | | Floor variable has no effect and it isn't worth it to have it adjustable.
* gaudi: remove unused propertyLuis de Bethencourt2015-04-221-12/+0
|
* gaudieffects: clean solarize codeLuis de Bethencourt2015-03-231-13/+9
|
* gaudieffects: removing values only used onceLuis de Bethencourt2015-03-231-6/+5
|
* gaudieffects: remove < 0 comparison on guint32Luis de Bethencourt2014-10-301-9/+8
| | | | | | | | Current CLAMP checks both if the value is below 0 or above 255. Considering it is an unsigned value it can never be less than zero, so that comparison is unnecessary. Switching to using if just for the upper bound. CID #1139796
* gaudieffects: declare floor and ceiling as constantsLuis de Bethencourt2014-10-301-2/+2
|
* 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
|
* gaudieffects: use CLAMP in solarizeLuis de Bethencourt2012-05-171-16/+3
| | | | | No need to have a gate_int () function duplicating the already existing and established CLAMP () function.
* gaudieffects: example pipelines with videoconvertLuis de Bethencourt2012-05-161-1/+1
|
* gaudieffects: consistency in templates nameLuis de Bethencourt2012-05-101-4/+6
|
* gaudieffects: port solarize to GstVideoFilterLuis de Bethencourt2012-05-091-44/+25
|
* gaudieffects: port solarize to 0.11Luis de Bethencourt2012-05-091-35/+39
|
* controller: port to new controller location and apiLuis de Bethencourt2012-05-091-1/+0
|
* controller: port to new controller location and apiStefan Sauer2011-11-041-1/+1
|
* gaudieffects: made filter parameters dynamic and controllableLuis de Bethencourt2010-10-281-14/+80
|
* various (gst): add missing G_PARAM_STATIC_STRINGS flagsStefan Kost2010-10-191-1/+1
| | | | Canonicalize property names as needed.
* gaudieffects: fix structure names to comply with the plugin moving guidelinesTim-Philipp Müller2010-07-281-7/+7
|
* gaudieffects: Adds new plugin 'gaudieffects'Luis de Bethencourt2010-07-201-0/+334
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