diff options
Diffstat (limited to 'gst/geometrictransform/geometricmath.c')
-rw-r--r-- | gst/geometrictransform/geometricmath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/geometrictransform/geometricmath.c b/gst/geometrictransform/geometricmath.c index 6c7949e1c..f09459ce4 100644 --- a/gst/geometrictransform/geometricmath.c +++ b/gst/geometrictransform/geometricmath.c @@ -179,7 +179,7 @@ gst_gm_mod_float (gdouble a, gdouble b) return a; } -/** +/* * Returns a repeating triangle shape in the range 0..1 with wavelength 1.0 */ gdouble @@ -190,7 +190,7 @@ gst_gm_triangle (gdouble x) return 2.0 * (r < 0.5 ? r : 1 - r); } -/** +/* * Hermite interpolation */ gdouble |