summaryrefslogtreecommitdiff
path: root/gst/gaudieffects
AgeCommit message (Collapse)Author
2015-12-15plugins-bad: Fix example pipelinesVineeth TM
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-06-07Release 1.5.1gst-plugins-bad-1.5.1Sebastian Dröge
2015-05-26exclusion: exception when set factor to 0Vineeth T M
When factor property is set to 0, transform just returns. Adjust the minimum value to 1. https://bugzilla.gnome.org/show_bug.cgi?id=743907
2015-04-26Remove obsolete Android build cruftTim-Philipp Müller
This is not needed any longer.
2015-04-24remove unused enum items PROP_LASTLuis de Bethencourt
This were probably added to the enums due to cargo cult programming and are unused.
2015-04-23gaudi: don't run gaussian function if sigma is 0Luis de Bethencourt
2015-04-22gaudi: fix to 30780db1Luis de Bethencourt
The second check for (factor == 0) creeped in the last commit. Apologies.
2015-04-22gaudi: fix exclusion's factor rangeLuis de Bethencourt
Avoid dividing by zero when the factor is zero. Instead, output a buffer with all color values as zero.
2015-04-22gaudi: remove floor variable in solarizeLuis de Bethencourt
Floor variable has no effect and it isn't worth it to have it adjustable.
2015-04-22gaudi: remove unused propertyLuis de Bethencourt
2015-03-23gaudieffects: clean solarize codeLuis de Bethencourt
2015-03-23gaudieffects: removing values only used onceLuis de Bethencourt
2015-03-23gaudieffects: small cleanup in headersLuis de Bethencourt
2015-03-19gaudieffects: update copyright dates of dilateLuis de Bethencourt
2015-03-19gaudieffects: factorize transform code of dilateLuis de Bethencourt
2015-01-12gaudieffects: stored value is overwrittenLuis de Bethencourt
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: remove < 0 comparison on guint32Luis de Bethencourt
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
2014-10-30gaudieffects: declare floor and ceiling as constantsLuis de Bethencourt
2014-10-30gaudieffects: stored value is overwrittenLuis de Bethencourt
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-05-03Release 1.3.1gst-plugins-bad-1.3.1Sebastian Dröge
2013-06-05Release 1.1.1gst-plugins-bad-1.1.1Sebastian Dröge
2013-04-15gst: Add better support for static pluginsSebastian Dröge
2012-11-04Fix FSF addressTim-Philipp Müller
https://bugzilla.gnome.org/show_bug.cgi?id=687520
2012-10-17Use gst_element_class_set_static_metadata()Tim-Philipp Müller
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 Nauwelaerts
2012-09-14rename some capsWim Taymans
2012-09-14ffmpegcolorspace is no moreWim Taymans
2012-07-24guadi: prefix orc functions with gaudi_orc_Wim Taymans
2012-06-07Release 0.11.92gst-plugins-bad-0.11.92Sebastian Dröge
2012-05-17gaudieffects: add fallback code for orcLuis de Bethencourt
this includes an improved version of the burn filter, with a ~40% speed improvement.
2012-05-17gaudieffects: use CLAMP in solarizeLuis de Bethencourt
No need to have a gate_int () function duplicating the already existing and established CLAMP () function.
2012-05-17gaudieffects: use CLAMP in exclusionLuis de Bethencourt
No need to have a gate_int () function duplicating the already existing and established CLAMP () function.
2012-05-17gaudieffects: use CLAMP in dodgeLuis de Bethencourt
No need to have a gate_int () function duplicating the already existing and established CLAMP () function.
2012-05-17gaudieffects: use CLAMP in chromiumLuis de Bethencourt
No need to have a gate_int () function duplicating the already existing and established CLAMP () function.
2012-05-16gaudieffects: example pipelines with videoconvertLuis de Bethencourt
2012-05-16gaudieffects: orc-ify burn filterLuis de Bethencourt
2012-05-10gaudieffects: consistency in templates nameLuis de Bethencourt
2012-05-10gaudieffects: consistency fixes in gstgaussblurLuis de Bethencourt
2012-05-10gaudieffects: port gaussianblur to GstVideoFilterLuis de Bethencourt
2012-05-09gaudieffects: port solarize to GstVideoFilterLuis de Bethencourt
2012-05-09gaudieffects: port exclusion to GstVideoFilterLuis de Bethencourt
2012-05-09gaudieffects: port dodge to GstVideoFilterLuis de Bethencourt
2012-05-09gaudieffects: port dilate to GstVideoFilterLuis de Bethencourt
2012-05-09gaudieffects: port burn to GstVideoFilterLuis de Bethencourt
2012-05-09gaudieffects: port chromium to GstVideoFilterLuis de Bethencourt
2012-05-09gaudieffects: use GST_DEBUG_FUNCPTR in blurLuis de Bethencourt
2012-05-09gaudieffects: port gaussblur to 0.11Luis de Bethencourt
2012-05-09gaudieffects: port solarize to 0.11Luis de Bethencourt
2012-05-09gaudieffects: port exclusion to 0.11Luis de Bethencourt
2012-05-09gaudieffects: port dodge to 0.11Luis de Bethencourt