TrackEffect: Fixe the documentation

This commit is contained in:
Thibault Saunier 2011-01-31 13:26:50 +01:00 committed by Edward Hervey
parent 25daa3c6a0
commit 67cefa009d
2 changed files with 11 additions and 0 deletions

View file

@ -67,6 +67,7 @@ platform as well as Windows. It is released under the GNU Library General Public
<xi:include href="xml/ges-track-video-transition.xml"/>
<xi:include href="xml/ges-track-audio-transition.xml"/>
<xi:include href="xml/ges-track-image-source.xml"/>
<xi:include href="xml/ges-track-effect.xml"/>
</chapter>
<chapter>

View file

@ -166,6 +166,16 @@ ges_track_effect_create_element (GESTrackObject * object)
return ret;
}
/**
* ges_track_effect_new_from_bin_desc:
* @bin_description: The gst-launch like bin description of the effect
*
* Creates a new #GESTrackEffect from the description of the bin. This is
* a convenience method for testing puposes.
*
* Returns: a newly created #GESTrackEffect, or %NULL if something went
* wrong.
*/
GESTrackEffect *
ges_track_effect_new_from_bin_desc (const gchar * bin_description)
{