diff --git a/ChangeLog b/ChangeLog index a45286dc73..f81034669d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-06-06 Sebastian Dröge + + * libs/gst/controller/gstcontroller.c: + Clarify docs: The get_all, get_value_array(s) functions + don't modify the GObject properties. + 2007-06-06 Sebastian Dröge * libs/gst/controller/gstcontroller.c: diff --git a/libs/gst/controller/gstcontroller.c b/libs/gst/controller/gstcontroller.c index d2b5008ff0..8024696b99 100644 --- a/libs/gst/controller/gstcontroller.c +++ b/libs/gst/controller/gstcontroller.c @@ -982,6 +982,8 @@ gst_controller_get (GstController * self, gchar * property_name, * Returns a read-only copy of the list of GstTimedValue for the given property. * Free the list after done with it. * + * This doesn't modify the controlled GObject property! + * * Returns: a copy of the list, or %NULL if the property isn't handled by the controller */ const GList * @@ -1118,6 +1120,8 @@ gst_controller_sync_values (GstController * self, GstClockTime timestamp) * * The types of the values in the array are the same as the property's type. * + * This doesn't modify the controlled GObject properties! + * * Returns: %TRUE if the given array(s) could be filled, %FALSE otherwise */ gboolean @@ -1151,6 +1155,8 @@ gst_controller_get_value_arrays (GstController * self, * of values. * * The type of the values in the array is the same as the property's type. + * + * This doesn't modify the controlled GObject property! * * Returns: %TRUE if the given array could be filled, %FALSE otherwise */