ges: Regenerate with now fixed TimelineElement.set_childXXX methods

This commit is contained in:
Thibault Saunier 2018-11-02 09:45:21 -03:00 committed by Sebastian Dröge
parent 983d1a3405
commit 0ca8a2f505
2 changed files with 4 additions and 4 deletions

View file

@ -8498,7 +8498,7 @@ is much more convenient for C programming.</doc>
</parameter>
<parameter name="value" transfer-ownership="none">
<doc xml:space="preserve">the value</doc>
<type name="GObject.Value" c:type="GValue*"/>
<type name="GObject.Value" c:type="const GValue*"/>
</parameter>
</parameters>
</method>
@ -8519,7 +8519,7 @@ is much more convenient for C programming.</doc>
</parameter>
<parameter name="value" transfer-ownership="none">
<doc xml:space="preserve">the value</doc>
<type name="GObject.Value" c:type="GValue*"/>
<type name="GObject.Value" c:type="const GValue*"/>
</parameter>
</parameters>
</method>

View file

@ -2976,8 +2976,8 @@ extern "C" {
pub fn ges_timeline_element_roll_end(self_: *mut GESTimelineElement, end: gst::GstClockTime) -> gboolean;
pub fn ges_timeline_element_roll_start(self_: *mut GESTimelineElement, start: gst::GstClockTime) -> gboolean;
pub fn ges_timeline_element_set_child_properties(self_: *mut GESTimelineElement, first_property_name: *const c_char, ...);
pub fn ges_timeline_element_set_child_property(self_: *mut GESTimelineElement, property_name: *const c_char, value: *mut gobject::GValue) -> gboolean;
pub fn ges_timeline_element_set_child_property_by_pspec(self_: *mut GESTimelineElement, pspec: *mut gobject::GParamSpec, value: *mut gobject::GValue);
pub fn ges_timeline_element_set_child_property(self_: *mut GESTimelineElement, property_name: *const c_char, value: *const gobject::GValue) -> gboolean;
pub fn ges_timeline_element_set_child_property_by_pspec(self_: *mut GESTimelineElement, pspec: *mut gobject::GParamSpec, value: *const gobject::GValue);
//pub fn ges_timeline_element_set_child_property_valist(self_: *mut GESTimelineElement, first_property_name: *const c_char, var_args: /*Unimplemented*/va_list);
pub fn ges_timeline_element_set_duration(self_: *mut GESTimelineElement, duration: gst::GstClockTime);
pub fn ges_timeline_element_set_inpoint(self_: *mut GESTimelineElement, inpoint: gst::GstClockTime);