2005-08-05 12:59:46 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* Copyright (C) <2005> Stefan Kost <ensonic at users dot sf dot net>
|
|
|
|
*
|
2005-09-09 13:26:54 +00:00
|
|
|
* gstinterpolation.c: Interpolation methods for dynamic properties
|
2005-08-05 12:59:46 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
2005-08-02 21:35:34 +00:00
|
|
|
*/
|
|
|
|
|
2005-12-01 09:23:20 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2006-01-13 14:21:48 +00:00
|
|
|
#include "gstcontrollerprivate.h"
|
2005-09-09 13:26:54 +00:00
|
|
|
#include "gstcontroller.h"
|
2005-08-02 21:35:34 +00:00
|
|
|
|
|
|
|
#define GST_CAT_DEFAULT gst_controller_debug
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (GST_CAT_DEFAULT);
|
|
|
|
|
2005-09-09 13:26:54 +00:00
|
|
|
/* common helper */
|
2005-08-02 21:35:34 +00:00
|
|
|
|
|
|
|
/*
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
* gst_controlled_property_find_control_point_node:
|
2005-08-02 21:35:34 +00:00
|
|
|
* @prop: the controlled property to search in
|
|
|
|
* @timestamp: the search key
|
|
|
|
*
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
* Find last value before given timestamp in control point list.
|
2005-08-02 21:35:34 +00:00
|
|
|
*
|
|
|
|
* Returns: the found #GList node or %NULL
|
|
|
|
*/
|
|
|
|
GList *
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
gst_controlled_property_find_control_point_node (GstControlledProperty * prop,
|
2005-08-02 21:35:34 +00:00
|
|
|
GstClockTime timestamp)
|
|
|
|
{
|
|
|
|
GList *prev_node = g_list_last (prop->values);
|
|
|
|
GList *node;
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
GstControlPoint *cp;
|
2005-08-02 21:35:34 +00:00
|
|
|
|
2007-05-17 17:16:09 +00:00
|
|
|
node = prop->values;
|
|
|
|
if (prop->last_requested_value) {
|
|
|
|
GstControlPoint *last_cp = prop->last_requested_value->data;
|
|
|
|
|
|
|
|
if (timestamp > last_cp->timestamp)
|
|
|
|
node = prop->last_requested_value;
|
|
|
|
}
|
2005-08-02 21:35:34 +00:00
|
|
|
|
|
|
|
/* iterate over timed value list */
|
2007-05-17 17:16:09 +00:00
|
|
|
for (; node; node = g_list_next (node)) {
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
cp = node->data;
|
2005-08-02 21:35:34 +00:00
|
|
|
/* this timestamp is newer that the one we look for */
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
if (timestamp < cp->timestamp) {
|
2005-08-02 21:35:34 +00:00
|
|
|
/* get previous one again */
|
|
|
|
prev_node = g_list_previous (node);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-05-17 17:16:09 +00:00
|
|
|
|
|
|
|
if (prev_node)
|
|
|
|
prop->last_requested_value = prev_node;
|
|
|
|
|
2005-08-02 21:35:34 +00:00
|
|
|
return (prev_node);
|
|
|
|
}
|
|
|
|
|
gst/gstinfo.c: don't do dummy g_strdup()s
Original commit message from CVS:
* gst/gstinfo.c: (gst_debug_log_default):
don't do dummy g_strdup()s
* libs/gst/controller/gstcontroller.c:
(on_object_controlled_property_changed),
(gst_controlled_property_new), (gst_controller_new_valist),
(gst_controller_new_list),
(gst_controller_remove_properties_valist), (gst_controller_set),
(gst_controller_get), (gst_controller_sync_values),
(gst_controller_get_value_array), (_gst_controller_class_init),
(gst_controller_get_type):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_timed_value_node):
convert // to /**/ comments
2005-09-28 17:30:13 +00:00
|
|
|
/* steps-like (no-)interpolation, default */
|
|
|
|
/* just returns the value for the most recent key-frame */
|
2005-08-02 21:35:34 +00:00
|
|
|
|
|
|
|
static GValue *
|
|
|
|
interpolate_none_get (GstControlledProperty * prop, GstClockTime timestamp)
|
|
|
|
{
|
|
|
|
GList *node;
|
|
|
|
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
if ((node =
|
|
|
|
gst_controlled_property_find_control_point_node (prop, timestamp))) {
|
|
|
|
GstControlPoint *cp = node->data;
|
2005-08-02 21:35:34 +00:00
|
|
|
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
return (&cp->value);
|
2005-08-02 21:35:34 +00:00
|
|
|
}
|
|
|
|
return (&prop->default_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DEFINE_NONE_GET(type) \
|
|
|
|
static gboolean \
|
|
|
|
interpolate_none_get_##type##_value_array (GstControlledProperty * prop, \
|
|
|
|
GstClockTime timestamp, GstValueArray * value_array) \
|
|
|
|
{ \
|
|
|
|
gint i; \
|
2005-12-01 09:54:56 +00:00
|
|
|
GstClockTime ts = timestamp; \
|
|
|
|
g##type *values = (g##type *) value_array->values; \
|
2005-08-02 21:35:34 +00:00
|
|
|
\
|
2005-12-01 09:54:56 +00:00
|
|
|
for(i = 0; i < value_array->nbsamples; i++) { \
|
|
|
|
*values = g_value_get_##type (interpolate_none_get (prop,ts)); \
|
|
|
|
ts += value_array->sample_interval; \
|
2005-08-02 21:35:34 +00:00
|
|
|
values++; \
|
|
|
|
} \
|
|
|
|
return (TRUE); \
|
|
|
|
}
|
|
|
|
|
2005-12-01 09:54:56 +00:00
|
|
|
DEFINE_NONE_GET (int);
|
|
|
|
DEFINE_NONE_GET (uint);
|
|
|
|
DEFINE_NONE_GET (long);
|
2005-08-02 21:35:34 +00:00
|
|
|
|
2005-12-01 09:54:56 +00:00
|
|
|
DEFINE_NONE_GET (ulong);
|
|
|
|
DEFINE_NONE_GET (float);
|
|
|
|
DEFINE_NONE_GET (double);
|
|
|
|
|
|
|
|
DEFINE_NONE_GET (boolean);
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
interpolate_none_get_enum_value_array (GstControlledProperty * prop,
|
2005-11-27 22:43:08 +00:00
|
|
|
GstClockTime timestamp, GstValueArray * value_array)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
GstClockTime ts = timestamp;
|
|
|
|
gint *values = (gint *) value_array->values;
|
|
|
|
|
|
|
|
for (i = 0; i < value_array->nbsamples; i++) {
|
|
|
|
*values = g_value_get_enum (interpolate_none_get (prop, ts));
|
|
|
|
ts += value_array->sample_interval;
|
|
|
|
values++;
|
|
|
|
}
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
2006-01-12 21:55:42 +00:00
|
|
|
static gboolean
|
|
|
|
interpolate_none_get_string_value_array (GstControlledProperty * prop,
|
|
|
|
GstClockTime timestamp, GstValueArray * value_array)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
GstClockTime ts = timestamp;
|
|
|
|
gchar **values = (gchar **) value_array->values;
|
|
|
|
|
|
|
|
for (i = 0; i < value_array->nbsamples; i++) {
|
|
|
|
*values = (gchar *) g_value_get_string (interpolate_none_get (prop, ts));
|
|
|
|
ts += value_array->sample_interval;
|
|
|
|
values++;
|
|
|
|
}
|
|
|
|
return (TRUE);
|
|
|
|
}
|
2005-11-27 22:43:08 +00:00
|
|
|
|
|
|
|
static GstInterpolateMethod interpolate_none = {
|
|
|
|
interpolate_none_get,
|
|
|
|
interpolate_none_get_int_value_array,
|
|
|
|
interpolate_none_get,
|
|
|
|
interpolate_none_get_uint_value_array,
|
|
|
|
interpolate_none_get,
|
|
|
|
interpolate_none_get_long_value_array,
|
|
|
|
interpolate_none_get,
|
|
|
|
interpolate_none_get_ulong_value_array,
|
|
|
|
interpolate_none_get,
|
|
|
|
interpolate_none_get_float_value_array,
|
|
|
|
interpolate_none_get,
|
|
|
|
interpolate_none_get_double_value_array,
|
|
|
|
interpolate_none_get,
|
|
|
|
interpolate_none_get_boolean_value_array,
|
|
|
|
interpolate_none_get,
|
2006-01-12 21:55:42 +00:00
|
|
|
interpolate_none_get_enum_value_array,
|
|
|
|
interpolate_none_get,
|
|
|
|
interpolate_none_get_string_value_array
|
2005-11-27 22:43:08 +00:00
|
|
|
};
|
2005-08-02 21:35:34 +00:00
|
|
|
|
gst/gstinfo.c: don't do dummy g_strdup()s
Original commit message from CVS:
* gst/gstinfo.c: (gst_debug_log_default):
don't do dummy g_strdup()s
* libs/gst/controller/gstcontroller.c:
(on_object_controlled_property_changed),
(gst_controlled_property_new), (gst_controller_new_valist),
(gst_controller_new_list),
(gst_controller_remove_properties_valist), (gst_controller_set),
(gst_controller_get), (gst_controller_sync_values),
(gst_controller_get_value_array), (_gst_controller_class_init),
(gst_controller_get_type):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_timed_value_node):
convert // to /**/ comments
2005-09-28 17:30:13 +00:00
|
|
|
/* returns the default value of the property, except for times with specific values */
|
|
|
|
/* needed for one-shot events, such as notes and triggers */
|
2005-08-02 21:35:34 +00:00
|
|
|
|
|
|
|
static GValue *
|
|
|
|
interpolate_trigger_get (GstControlledProperty * prop, GstClockTime timestamp)
|
|
|
|
{
|
|
|
|
GList *node;
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
GstControlPoint *cp;
|
2005-08-02 21:35:34 +00:00
|
|
|
|
|
|
|
/* check if there is a value at the registered timestamp */
|
|
|
|
for (node = prop->values; node; node = g_list_next (node)) {
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
cp = node->data;
|
|
|
|
if (timestamp == cp->timestamp) {
|
|
|
|
return (&cp->value);
|
2005-08-02 21:35:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (&prop->default_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
interpolate_trigger_get_value_array (GstControlledProperty * prop,
|
|
|
|
GstClockTime timestamp, GstValueArray * value_array)
|
|
|
|
{
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstInterpolateMethod interpolate_trigger = {
|
|
|
|
interpolate_trigger_get,
|
|
|
|
interpolate_trigger_get_value_array,
|
|
|
|
interpolate_trigger_get,
|
|
|
|
NULL,
|
|
|
|
interpolate_trigger_get,
|
|
|
|
NULL,
|
|
|
|
interpolate_trigger_get,
|
2005-08-31 10:00:08 +00:00
|
|
|
NULL,
|
|
|
|
interpolate_trigger_get,
|
2005-10-17 17:05:38 +00:00
|
|
|
NULL,
|
|
|
|
interpolate_trigger_get,
|
|
|
|
NULL,
|
|
|
|
interpolate_trigger_get,
|
2005-11-27 22:43:08 +00:00
|
|
|
NULL,
|
|
|
|
interpolate_trigger_get,
|
2006-01-12 21:55:42 +00:00
|
|
|
NULL,
|
|
|
|
interpolate_trigger_get,
|
2005-08-02 21:35:34 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
gst/gstinfo.c: don't do dummy g_strdup()s
Original commit message from CVS:
* gst/gstinfo.c: (gst_debug_log_default):
don't do dummy g_strdup()s
* libs/gst/controller/gstcontroller.c:
(on_object_controlled_property_changed),
(gst_controlled_property_new), (gst_controller_new_valist),
(gst_controller_new_list),
(gst_controller_remove_properties_valist), (gst_controller_set),
(gst_controller_get), (gst_controller_sync_values),
(gst_controller_get_value_array), (_gst_controller_class_init),
(gst_controller_get_type):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_timed_value_node):
convert // to /**/ comments
2005-09-28 17:30:13 +00:00
|
|
|
/* linear interpolation */
|
|
|
|
/* smoothes inbetween values */
|
2005-08-02 21:35:34 +00:00
|
|
|
|
|
|
|
#define DEFINE_LINEAR_GET(type) \
|
|
|
|
static g##type \
|
|
|
|
_interpolate_linear_get_##type (GstControlledProperty * prop, GstClockTime timestamp) \
|
|
|
|
{ \
|
|
|
|
GList *node; \
|
|
|
|
\
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
if ((node = gst_controlled_property_find_control_point_node (prop, timestamp))) { \
|
|
|
|
GstControlPoint *cp1, *cp2; \
|
2005-08-02 21:35:34 +00:00
|
|
|
\
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
cp1 = node->data; \
|
2005-08-02 21:35:34 +00:00
|
|
|
if ((node = g_list_next (node))) { \
|
|
|
|
gdouble timediff,valuediff; \
|
|
|
|
g##type value1,value2; \
|
|
|
|
\
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
cp2 = node->data; \
|
2005-08-02 21:35:34 +00:00
|
|
|
\
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
timediff = gst_guint64_to_gdouble (cp2->timestamp - cp1->timestamp); \
|
|
|
|
value1 = g_value_get_##type (&cp1->value); \
|
|
|
|
value2 = g_value_get_##type (&cp2->value); \
|
2005-12-01 09:54:56 +00:00
|
|
|
valuediff = (gdouble) (value2 - value1); \
|
2005-08-02 21:35:34 +00:00
|
|
|
\
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
return ((g##type) (value1 + valuediff * (gst_guint64_to_gdouble (timestamp - cp1->timestamp) / timediff))); \
|
2005-08-02 21:35:34 +00:00
|
|
|
} \
|
|
|
|
else { \
|
libs/gst/controller/: Add a new private GstControlPoint struct which "inherits" from
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
(gst_control_point_find), (gst_controlled_property_new),
(gst_control_point_free), (gst_controlled_property_free),
(gst_controller_set), (gst_controller_set_from_list),
(gst_controller_unset), (gst_controller_unset_all),
(gst_controller_sync_values):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_control_point_node),
(interpolate_none_get), (interpolate_trigger_get):
Add a new private GstControlPoint struct which "inherits" from
GstTimedValue to allow different interpolators to store internal
values next to each control point. From the outside everything is
still a GstControlPoint so we don't loose binary compatibility.
Also fixup all the GValue handling to not leak GValues or list nodes.
* tests/check/libs/controller.c: (GST_START_TEST):
Free the list nodes and GValues in the controller_misc test.
2007-05-17 17:05:36 +00:00
|
|
|
return (g_value_get_##type (&cp1->value)); \
|
2005-08-02 21:35:34 +00:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
return (g_value_get_##type (&prop->default_value)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static GValue * \
|
|
|
|
interpolate_linear_get_##type (GstControlledProperty * prop, GstClockTime timestamp) \
|
|
|
|
{ \
|
|
|
|
g_value_set_##type (&prop->result_value,_interpolate_linear_get_##type (prop,timestamp)); \
|
|
|
|
return (&prop->result_value); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static gboolean \
|
|
|
|
interpolate_linear_get_##type##_value_array (GstControlledProperty * prop, \
|
|
|
|
GstClockTime timestamp, GstValueArray * value_array) \
|
|
|
|
{ \
|
|
|
|
gint i; \
|
2005-12-01 09:54:56 +00:00
|
|
|
GstClockTime ts = timestamp; \
|
|
|
|
gint *values = (gint *) value_array->values; \
|
2005-08-02 21:35:34 +00:00
|
|
|
\
|
2005-12-01 09:54:56 +00:00
|
|
|
for(i = 0; i < value_array->nbsamples; i++) { \
|
|
|
|
*values = _interpolate_linear_get_##type (prop, ts); \
|
|
|
|
ts += value_array->sample_interval; \
|
2005-08-02 21:35:34 +00:00
|
|
|
values++; \
|
|
|
|
} \
|
|
|
|
return (TRUE); \
|
|
|
|
}
|
|
|
|
|
2005-12-01 09:54:56 +00:00
|
|
|
DEFINE_LINEAR_GET (int);
|
|
|
|
|
|
|
|
DEFINE_LINEAR_GET (uint);
|
|
|
|
DEFINE_LINEAR_GET (long);
|
|
|
|
|
|
|
|
DEFINE_LINEAR_GET (ulong);
|
|
|
|
DEFINE_LINEAR_GET (float);
|
|
|
|
DEFINE_LINEAR_GET (double);
|
|
|
|
|
|
|
|
static GstInterpolateMethod interpolate_linear = {
|
|
|
|
interpolate_linear_get_int,
|
|
|
|
interpolate_linear_get_int_value_array,
|
|
|
|
interpolate_linear_get_uint,
|
|
|
|
interpolate_linear_get_uint_value_array,
|
|
|
|
interpolate_linear_get_long,
|
|
|
|
interpolate_linear_get_long_value_array,
|
|
|
|
interpolate_linear_get_ulong,
|
|
|
|
interpolate_linear_get_ulong_value_array,
|
|
|
|
interpolate_linear_get_float,
|
|
|
|
interpolate_linear_get_float_value_array,
|
|
|
|
interpolate_linear_get_double,
|
|
|
|
interpolate_linear_get_double_value_array,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2006-01-12 21:55:42 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2005-12-01 09:54:56 +00:00
|
|
|
NULL
|
|
|
|
};
|
2005-08-02 21:35:34 +00:00
|
|
|
|
gst/gstinfo.c: don't do dummy g_strdup()s
Original commit message from CVS:
* gst/gstinfo.c: (gst_debug_log_default):
don't do dummy g_strdup()s
* libs/gst/controller/gstcontroller.c:
(on_object_controlled_property_changed),
(gst_controlled_property_new), (gst_controller_new_valist),
(gst_controller_new_list),
(gst_controller_remove_properties_valist), (gst_controller_set),
(gst_controller_get), (gst_controller_sync_values),
(gst_controller_get_value_array), (_gst_controller_class_init),
(gst_controller_get_type):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_timed_value_node):
convert // to /**/ comments
2005-09-28 17:30:13 +00:00
|
|
|
/* square interpolation */
|
2005-08-02 21:35:34 +00:00
|
|
|
|
gst/gstinfo.c: don't do dummy g_strdup()s
Original commit message from CVS:
* gst/gstinfo.c: (gst_debug_log_default):
don't do dummy g_strdup()s
* libs/gst/controller/gstcontroller.c:
(on_object_controlled_property_changed),
(gst_controlled_property_new), (gst_controller_new_valist),
(gst_controller_new_list),
(gst_controller_remove_properties_valist), (gst_controller_set),
(gst_controller_get), (gst_controller_sync_values),
(gst_controller_get_value_array), (_gst_controller_class_init),
(gst_controller_get_type):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_timed_value_node):
convert // to /**/ comments
2005-09-28 17:30:13 +00:00
|
|
|
/* cubic interpolation */
|
2005-08-02 21:35:34 +00:00
|
|
|
|
gst/gstinfo.c: don't do dummy g_strdup()s
Original commit message from CVS:
* gst/gstinfo.c: (gst_debug_log_default):
don't do dummy g_strdup()s
* libs/gst/controller/gstcontroller.c:
(on_object_controlled_property_changed),
(gst_controlled_property_new), (gst_controller_new_valist),
(gst_controller_new_list),
(gst_controller_remove_properties_valist), (gst_controller_set),
(gst_controller_get), (gst_controller_sync_values),
(gst_controller_get_value_array), (_gst_controller_class_init),
(gst_controller_get_type):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_timed_value_node):
convert // to /**/ comments
2005-09-28 17:30:13 +00:00
|
|
|
/* register all interpolation methods */
|
2005-08-02 21:35:34 +00:00
|
|
|
GstInterpolateMethod *interpolation_methods[] = {
|
|
|
|
&interpolate_none,
|
|
|
|
&interpolate_trigger,
|
|
|
|
&interpolate_linear,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
2007-05-04 12:37:01 +00:00
|
|
|
|
|
|
|
guint num_interpolation_methods = G_N_ELEMENTS (interpolation_methods);
|