mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 03:46:11 +00:00
controller: fix compiler warning in interpolation control source
gstinterpolationcontrolsource.c:54: warning: type qualifiers ignored on function return type https://bugzilla.gnome.org/show_bug.cgi?id=666890
This commit is contained in:
parent
2c2efb06bb
commit
e65ac5b419
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
||||||
|
|
||||||
/* steps-like (no-)interpolation, default */
|
/* steps-like (no-)interpolation, default */
|
||||||
/* just returns the value for the most recent key-frame */
|
/* just returns the value for the most recent key-frame */
|
||||||
static inline const gdouble
|
static inline gdouble
|
||||||
_interpolate_none (GstTimedValueControlSource * self, GSequenceIter * iter)
|
_interpolate_none (GstTimedValueControlSource * self, GSequenceIter * iter)
|
||||||
{
|
{
|
||||||
GstControlPoint *cp = g_sequence_get (iter);
|
GstControlPoint *cp = g_sequence_get (iter);
|
||||||
|
|
Loading…
Reference in a new issue